Handle malloc failure in ipc_recv_response

This commit is contained in:
Drew DeVault 2016-12-15 17:05:12 -05:00
parent 6c0fc20936
commit 9ad1e6b40f
3 changed files with 24 additions and 3 deletions

View file

@ -88,9 +88,14 @@ void _sway_log(const char *filename, int line, log_importance_t verbosity, const
}
if (filename && line) {
char *file = strdup(filename);
fprintf(stderr, "[%s:%d] ", basename(file), line);
free(file);
const char *file = filename + strlen(filename);
while (file != filename && *file != '/') {
--file;
}
if (*file == '/') {
++file;
}
fprintf(stderr, "[%s:%d] ", file, line);
}
va_list args;