mirror of
https://github.com/swaywm/sway.git
synced 2024-11-13 05:54:11 +01:00
Fix warning about uninitialized variable
This commit is contained in:
parent
2f01a3265d
commit
fb0bfa13ce
@ -59,6 +59,7 @@ static struct buffer *create_buffer(struct client_state *state, struct buffer *b
|
|||||||
int fd = create_pool_file(size, &name);
|
int fd = create_pool_file(size, &name);
|
||||||
if (fd == -1) {
|
if (fd == -1) {
|
||||||
sway_abort("Unable to allocate buffer");
|
sway_abort("Unable to allocate buffer");
|
||||||
|
return NULL; // never reached
|
||||||
}
|
}
|
||||||
void *data = mmap(NULL, size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
|
void *data = mmap(NULL, size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
|
||||||
struct wl_shm_pool *pool = wl_shm_create_pool(state->shm, fd, size);
|
struct wl_shm_pool *pool = wl_shm_create_pool(state->shm, fd, size);
|
||||||
|
Loading…
Reference in New Issue
Block a user