mirror of
https://github.com/profanity-im/profanity.git
synced 2024-12-04 14:46:46 -05:00
Merge pull request #1007 from jubalh/memcpy
Fix gcc8 error about strncpy
This commit is contained in:
commit
fbf645b75c
@ -228,7 +228,7 @@ _rotate_log_file(void)
|
|||||||
size_t len = strlen(log_file);
|
size_t len = strlen(log_file);
|
||||||
char *log_file_new = malloc(len + 3);
|
char *log_file_new = malloc(len + 3);
|
||||||
|
|
||||||
strncpy(log_file_new, log_file, len);
|
memcpy(log_file_new, log_file, len);
|
||||||
log_file_new[len] = '.';
|
log_file_new[len] = '.';
|
||||||
log_file_new[len+1] = '1';
|
log_file_new[len+1] = '1';
|
||||||
log_file_new[len+2] = 0;
|
log_file_new[len+2] = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user