From a45215154b2d27ac57d042ab081ee1e54071951e Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Wed, 29 Feb 2012 09:23:19 +0000 Subject: [PATCH] -LRN: fix --- src/util/os_priority.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/util/os_priority.c b/src/util/os_priority.c index a1f173a5e..5a0709958 100644 --- a/src/util/os_priority.c +++ b/src/util/os_priority.c @@ -985,8 +985,8 @@ GNUNET_OS_start_process_vap (int pipe_control, our_env[0] = NULL; } env_block = CreateCustomEnvTable (our_env); - GNUNET_free (our_env[0]); - GNUNET_free (our_env[1]); + GNUNET_free_non_null (our_env[0]); + GNUNET_free_non_null (our_env[1]); if (ERROR_SUCCESS != plibc_conv_to_win_pathwconv(path, wpath) || ERROR_SUCCESS != plibc_conv_to_win_pathwconv(cmd, wcmd) -- 2.25.1