commit 89ea7681905d58ac3f25cea581ee084a70715efc
parent 607211bb755160fd5744d6ea6124dadecf4a9e18
Author: Julius Bünger <buenger@mytum.de>
Date: Mon, 16 Nov 2020 22:56:27 +0100
rps: use correct buffer sizes
Diffstat:
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/src/rps/rps-test_util.h b/src/rps/rps-test_util.h
@@ -73,7 +73,7 @@ close_all_files ();
"Failed to create tmp_buf\n"); \
break; \
} \
- (void) strncat (tmp_buf, "\n", 512); \
+ (void) strncat (tmp_buf, "\n", 511); \
GNUNET_DISK_file_write (get_file_handle (file_name), \
tmp_buf, \
strnlen (tmp_buf, 512)); \
@@ -94,8 +94,7 @@ close_all_files ();
"Failed to create tmp_buf\n"); \
break; \
} \
- (void) strncat (tmp_buf, "\n", \
- len); \
+ (void) strncat (tmp_buf, "\n", 2); \
GNUNET_DISK_file_write ( \
get_file_handle (file_name), \
tmp_buf, \