mirror of
https://github.com/swaywm/sway.git
synced 2025-04-03 19:07:45 +03:00
Handle malloc failure in ipc_recv_response
This commit is contained in:
parent
6c0fc20936
commit
9ad1e6b40f
3 changed files with 24 additions and 3 deletions
11
common/log.c
11
common/log.c
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue