mirror of
https://git.tukaani.org/xz.git
synced 2024-04-04 12:36:23 +02:00
liblzma: Silence a warning.
The actual initialization is done via mythread_sync and seems that GCC doesn't necessarily see that it gets initialized there.
This commit is contained in:
parent
5d8f3764ef
commit
2ce4f36f17
1 changed files with 1 additions and 1 deletions
|
@ -1336,7 +1336,7 @@ stream_decode_mt(void *coder_ptr, const lzma_allocator *allocator,
|
||||||
// more in cache).
|
// more in cache).
|
||||||
uint64_t mem_in_use;
|
uint64_t mem_in_use;
|
||||||
uint64_t mem_cached;
|
uint64_t mem_cached;
|
||||||
struct worker_thread *thr;
|
struct worker_thread *thr = NULL; // Init to silence warning.
|
||||||
|
|
||||||
mythread_sync(coder->mutex) {
|
mythread_sync(coder->mutex) {
|
||||||
mem_in_use = coder->mem_in_use;
|
mem_in_use = coder->mem_in_use;
|
||||||
|
|
Loading…
Reference in a new issue