summaryrefslogtreecommitdiff
path: root/src/exchange/taler-exchange-httpd.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2020-07-05 16:58:43 +0200
committerChristian Grothoff <christian@grothoff.org>2020-07-05 16:58:43 +0200
commited5b98a2c2308fbd44b906a30286d2689fd304dd (patch)
treea221b9c784b4e004eb5972e18516653d1aea6a5c /src/exchange/taler-exchange-httpd.c
parent042e5cafd7b7748dafc5ce243267dc73abd45df7 (diff)
downloadexchange-ed5b98a2c2308fbd44b906a30286d2689fd304dd.tar.gz
exchange-ed5b98a2c2308fbd44b906a30286d2689fd304dd.tar.bz2
exchange-ed5b98a2c2308fbd44b906a30286d2689fd304dd.zip
GNUNET_free_non_null is gone, use GNUNET_free
Diffstat (limited to 'src/exchange/taler-exchange-httpd.c')
-rw-r--r--src/exchange/taler-exchange-httpd.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/exchange/taler-exchange-httpd.c b/src/exchange/taler-exchange-httpd.c
index df01b01be..c614b711e 100644
--- a/src/exchange/taler-exchange-httpd.c
+++ b/src/exchange/taler-exchange-httpd.c
@@ -1300,8 +1300,8 @@ main (int argc,
GNUNET_log_setup ("taler-exchange-httpd",
(NULL == loglev) ? "INFO" : loglev,
logfile));
- GNUNET_free_non_null (loglev);
- GNUNET_free_non_null (logfile);
+ GNUNET_free (loglev);
+ GNUNET_free (logfile);
if (NULL == cfgfile)
cfgfile = GNUNET_strdup (GNUNET_OS_project_data_get ()->user_config_file);
TEH_cfg = GNUNET_CONFIGURATION_create ();
@@ -1312,10 +1312,10 @@ main (int argc,
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
"Malformed configuration file `%s', exit ...\n",
cfgfile);
- GNUNET_free_non_null (cfgfile);
+ GNUNET_free (cfgfile);
return 1;
}
- GNUNET_free_non_null (cfgfile);
+ GNUNET_free (cfgfile);
if (GNUNET_OK !=
exchange_serve_process_config ())
return 1;