diff options
author | Drew DeVault <sir@cmpwn.com> | 2019-01-22 11:04:56 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-22 11:04:56 -0500 |
commit | 04aa41de340b82d4eccc5c0c86fa6f9c178b72d5 (patch) | |
tree | 75c61907f094838e23899231ec5ec955c530f692 /client | |
parent | 71a37ad186ba3080338b2ecb5a3e640600aefc1f (diff) | |
parent | 0af5b26e41c5141d4094652133c230d76bf82e56 (diff) |
Merge pull request #3496 from mstoeckl/fix-san
Fix dead stores found by scan-build
Diffstat (limited to 'client')
-rw-r--r-- | client/pool-buffer.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/client/pool-buffer.c b/client/pool-buffer.c index 588bd06c..836c6b13 100644 --- a/client/pool-buffer.c +++ b/client/pool-buffer.c @@ -85,7 +85,6 @@ static struct pool_buffer *create_buffer(struct wl_shm *shm, close(fd); unlink(name); free(name); - fd = -1; buf->size = size; buf->width = width; |