Skip to content
Snippets Groups Projects
Commit 0d5bf48c authored by tewk's avatar tewk
Browse files

Added check for null length string to avoid sgementation fault

parent 045621e7
No related branches found
No related tags found
No related merge requests found
...@@ -321,7 +321,7 @@ static void log_msg(log_level_t level, const char *fmt, va_list args) ...@@ -321,7 +321,7 @@ static void log_msg(log_level_t level, const char *fmt, va_list args)
if (level <= STDERR_LEVEL) { if (level <= STDERR_LEVEL) {
fflush(stdout); fflush(stdout);
if (buf[strlen(buf) - 1] == '\n') if (strlen(buf) > 0 && buf[strlen(buf) - 1] == '\n')
fprintf(stderr, "%s: %s%s", log->argv0, pfx, buf); fprintf(stderr, "%s: %s%s", log->argv0, pfx, buf);
else else
fprintf(stderr, "%s: %s%s\n", log->argv0, pfx, buf); fprintf(stderr, "%s: %s%s\n", log->argv0, pfx, buf);
...@@ -331,7 +331,7 @@ static void log_msg(log_level_t level, const char *fmt, va_list args) ...@@ -331,7 +331,7 @@ static void log_msg(log_level_t level, const char *fmt, va_list args)
if (level <= LOGFILE_LEVEL && log->logfp != NULL) { if (level <= LOGFILE_LEVEL && log->logfp != NULL) {
xstrfmtcat(&msgbuf, "[%T] %s%s", pfx, buf); xstrfmtcat(&msgbuf, "[%T] %s%s", pfx, buf);
if (buf[strlen(buf) - 1] == '\n') if (strlen(buf) > 0 && buf[strlen(buf) - 1] == '\n')
fprintf(log->logfp, "%s", msgbuf); fprintf(log->logfp, "%s", msgbuf);
else else
fprintf(log->logfp, "%s\n", msgbuf); fprintf(log->logfp, "%s\n", msgbuf);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment