From: Wayne Davison Date: Fri, 13 Oct 2006 07:38:11 +0000 (+0000) Subject: Mark out_of_memory() and overflow_exit() with NORETURN. X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/33394b769d8b95c082cda3d586b743ff53c6afe5 Mark out_of_memory() and overflow_exit() with NORETURN. --- diff --git a/util.c b/util.c index 6526a3d9..f32d881a 100644 --- a/util.c +++ b/util.c @@ -109,13 +109,13 @@ void print_child_argv(char **cmd) rprintf(FCLIENT, "\n"); } -void out_of_memory(char *str) +NORETURN void out_of_memory(char *str) { rprintf(FERROR, "ERROR: out of memory in %s [%s]\n", str, who_am_i()); exit_cleanup(RERR_MALLOC); } -void overflow_exit(char *str) +NORETURN void overflow_exit(char *str) { rprintf(FERROR, "ERROR: buffer overflow in %s [%s]\n", str, who_am_i()); exit_cleanup(RERR_MALLOC);