diff options
author | Schanzenbach, Martin <mschanzenbach@posteo.de> | 2019-07-23 13:38:08 +0200 |
---|---|---|
committer | Schanzenbach, Martin <mschanzenbach@posteo.de> | 2019-07-23 13:38:08 +0200 |
commit | 2dbe442005401656c73b3432b5798219fa8b5432 (patch) | |
tree | d802ed099e05cd9cd851bb62925bda2d77a29ece /src | |
parent | dbf604ad97fef5f9f1ecb468a174fbc81a2eb694 (diff) |
fix mem corruption, possibly #5581
Diffstat (limited to 'src')
-rw-r--r-- | src/testbed/gnunet-service-testbed.c | 11 | ||||
-rw-r--r-- | src/testbed/gnunet-service-testbed.h | 4 |
2 files changed, 7 insertions, 8 deletions
diff --git a/src/testbed/gnunet-service-testbed.c b/src/testbed/gnunet-service-testbed.c index 289e17349..8babeeb13 100644 --- a/src/testbed/gnunet-service-testbed.c +++ b/src/testbed/gnunet-service-testbed.c @@ -11,7 +11,7 @@ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. @@ -65,7 +65,7 @@ struct OperationQueue *GST_opq_openfds; /** * Timeout for operations which may take some time */ -const struct GNUNET_TIME_Relative GST_timeout; +struct GNUNET_TIME_Relative GST_timeout; /** * The size of the host list @@ -860,23 +860,22 @@ testbed_run (void *cls, } GNUNET_assert (GNUNET_OK == GNUNET_CONFIGURATION_get_value_number (cfg, - "TESTBED", + "testbed", "CACHE_SIZE", &num)); GST_cache_init ((unsigned int) num); GST_connection_pool_init ((unsigned int) num); GNUNET_assert (GNUNET_OK == GNUNET_CONFIGURATION_get_value_number (cfg, - "TESTBED", + "testbed", "MAX_OPEN_FDS", &num)); GST_opq_openfds = GNUNET_TESTBED_operation_queue_create_ (OPERATION_QUEUE_TYPE_FIXED, (unsigned int) num); GNUNET_assert (GNUNET_OK == GNUNET_CONFIGURATION_get_value_time (cfg, - "TESTBED", + "testbed", "OPERATION_TIMEOUT", - (struct GNUNET_TIME_Relative *) &GST_timeout)); GNUNET_assert (GNUNET_OK == GNUNET_CONFIGURATION_get_value_string (cfg, diff --git a/src/testbed/gnunet-service-testbed.h b/src/testbed/gnunet-service-testbed.h index 0960e9cc5..5e835392b 100644 --- a/src/testbed/gnunet-service-testbed.h +++ b/src/testbed/gnunet-service-testbed.h @@ -11,7 +11,7 @@ WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. - + You should have received a copy of the GNU Affero General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. @@ -454,7 +454,7 @@ extern struct OperationQueue *GST_opq_openfds; /** * Timeout for operations which may take some time */ -const extern struct GNUNET_TIME_Relative GST_timeout; +extern struct GNUNET_TIME_Relative GST_timeout; /** * The size of the peer list |