mirror of
https://git.tukaani.org/xz.git
synced 2025-04-20 06:30:50 +00:00
mythread.h: Fix typo error in Vista threads mythread_once().
The "once_" variable was accidentally referred to as just "once". This prevented building with Vista threads when HAVE_FUNC_ATTRIBUTE_CONSTRUCTOR was not defined. (cherry picked from commit c0c0cd4a483a672b66a13761583bc4f84d86d501)
This commit is contained in:
parent
f1123eefe1
commit
ec0d5c99c3
@ -372,7 +372,7 @@ typedef struct {
|
|||||||
abort(); \
|
abort(); \
|
||||||
if (pending_) { \
|
if (pending_) { \
|
||||||
func(); \
|
func(); \
|
||||||
if (!InitOnceComplete(&once, 0, NULL)) \
|
if (!InitOnceComplete(&once_, 0, NULL)) \
|
||||||
abort(); \
|
abort(); \
|
||||||
} \
|
} \
|
||||||
} while (0)
|
} while (0)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user