X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/b11b50bcd026a0a052bdfab7b96c97045b658d86..58cadc8608fbb2cbc7b74578cd92de4337a4b887:/options.c diff --git a/options.c b/options.c index d329f35a..b8c9f3da 100644 --- a/options.c +++ b/options.c @@ -825,7 +825,7 @@ void server_options(char **args,int *argc) /* Only send --suffix if it specifies a non-default value. */ if (strcmp(backup_suffix, backup_dir? "" : BACKUP_SUFFIX) != 0) { - char *s = malloc(9+backup_suffix_len+1); + char *s = new_array(char, 9+backup_suffix_len+1); if (!s) out_of_memory("server_options"); /* We use the following syntax to avoid weirdness with '~'. */