On Sat, Apr 5, 2014 at 10:08 PM, Zbigniew Jędrzejewski-Szmek <[email protected]> wrote: > On Sat, Apr 05, 2014 at 09:09:47PM +0200, Thomas H.P. Andersen wrote: >> static int get_line(RemoteSource *source, char **line, size_t *size) { >> ssize_t n, remain; >> - char *c; >> + char *c = NULL; >> char *newbuf = NULL; >> size_t newsize = 0; >> >> @@ -49,7 +49,9 @@ static int get_line(RemoteSource *source, char **line, >> size_t *size) { >> assert(source->filled <= source->size); >> assert(source->buf == NULL || source->size > 0); >> >> - c = memchr(source->buf, '\n', source->filled); >> + if (source->buf) >> + c = memchr(source->buf, '\n', source->filled); >> + >> if (c != NULL) > Looks good. Please push.
Pushed. Thanks. _______________________________________________ systemd-devel mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/systemd-devel
