diff options
author | Julius Bünger <buenger@mytum.de> | 2020-11-16 22:56:27 +0100 |
---|---|---|
committer | Julius Bünger <buenger@mytum.de> | 2020-11-16 22:56:27 +0100 |
commit | 89ea7681905d58ac3f25cea581ee084a70715efc (patch) | |
tree | d83996006791c2a16f3b9d6a215dece95befcf99 /src | |
parent | 607211bb755160fd5744d6ea6124dadecf4a9e18 (diff) |
rps: use correct buffer sizes
Diffstat (limited to 'src')
-rw-r--r-- | src/rps/rps-test_util.h | 5 |
1 files changed, 2 insertions, 3 deletions
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, \ |