From 89ea7681905d58ac3f25cea581ee084a70715efc Mon Sep 17 00:00:00 2001 From: Julius Bünger Date: Mon, 16 Nov 2020 22:56:27 +0100 Subject: rps: use correct buffer sizes --- src/rps/rps-test_util.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/rps/rps-test_util.h b/src/rps/rps-test_util.h index 2f11f0105..72aa78803 100644 --- 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, \ -- cgit v1.2.3