mirror of
https://github.com/swaywm/sway.git
synced 2024-11-11 04:54:14 +01:00
Merge pull request #334 from MonokelPinguin/master
fix segfault when doesn't have a trailing '/'
This commit is contained in:
commit
916ab81c02
@ -12,7 +12,7 @@
|
||||
#include "log.h"
|
||||
|
||||
static int create_pool_file(size_t size, char **name) {
|
||||
static const char template[] = "/sway-client-XXXXXX";
|
||||
static const char template[] = "sway-client-XXXXXX";
|
||||
const char *path = getenv("XDG_RUNTIME_DIR");
|
||||
if (!path) {
|
||||
return -1;
|
||||
@ -23,7 +23,7 @@ static int create_pool_file(size_t size, char **name) {
|
||||
*name = malloc(
|
||||
strlen(template) +
|
||||
strlen(path) +
|
||||
(ts ? 1 : 0) + 1);
|
||||
(ts ? 0 : 1) + 1);
|
||||
sprintf(*name, "%s%s%s", path, ts ? "" : "/", template);
|
||||
|
||||
int fd = mkstemp(*name);
|
||||
|
Loading…
Reference in New Issue
Block a user