From: Christian Grothoff Date: Mon, 25 Feb 2019 22:10:16 +0000 (+0100) Subject: do not crash all the time in to_file() X-Git-Tag: v0.11.0~37^2~2 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=0e3f1038f95d67ffc029debfce7e60e6de05a135;p=oweals%2Fgnunet.git do not crash all the time in to_file() --- diff --git a/src/rps/rps-test_util.h b/src/rps/rps-test_util.h index 484d0f7da..78d1e0a26 100644 --- a/src/rps/rps-test_util.h +++ b/src/rps/rps-test_util.h @@ -64,7 +64,7 @@ close_all_files (); * This function is used to facilitate writing important information to disk */ #ifdef TO_FILE -#define to_file(file_name, ...) do {GNUNET_assert (NULL != file_name);\ +#define to_file(file_name, ...) do { if (NULL == file_name) { GNUNET_break(0); return;} \ char tmp_buf[512] = "";\ int size;\ size = GNUNET_snprintf(tmp_buf,sizeof(tmp_buf),__VA_ARGS__);\