X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/18f3cb6957b10cff7719e80553c17589d382dd3c..99c3e591b201c28b8fe22c881332f8a4888e69b8:/clientserver.c diff --git a/clientserver.c b/clientserver.c index a9a1af58..47b29808 100644 --- a/clientserver.c +++ b/clientserver.c @@ -214,7 +214,7 @@ int start_inband_exchange(int f_in, int f_out, const char *user, int argc, char int sargc = 0; char *p, *modname; - assert(argc > 0); + assert(argc > 0 && *argv != NULL); if (**argv == '/') { rprintf(FERROR, @@ -505,7 +505,7 @@ static int rsync_module(int f_in, int f_out, int i, char *addr, char *host) if ((p = strstr(module_dir, "/./")) != NULL) { *p = '\0'; p += 2; - } else if ((p = strdup("/")) == NULL) + } else if ((p = strdup("/")) == NULL) /* MEMORY LEAK */ out_of_memory("rsync_module"); }