Merge pull request #2143 from vilhalmer/mark-pool-buffers-busy

Set pool_buffers busy when handing them out
This commit is contained in:
Drew DeVault 2018-06-17 14:55:29 -07:00 committed by GitHub
commit 202ee51150
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -144,5 +144,6 @@ struct pool_buffer *get_next_buffer(struct wl_shm *shm,
return NULL; return NULL;
} }
} }
buffer->busy = true;
return buffer; return buffer;
} }