1
0
зеркало из https://git.tukaani.org/xz.git synced 2025-10-28 03:52:52 +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)
Этот коммит содержится в:
Jamaika1 2023-08-08 14:07:59 +02:00 коммит произвёл Lasse Collin
родитель f1123eefe1
Коммит ec0d5c99c3

Просмотреть файл

@ -372,7 +372,7 @@ typedef struct {
abort(); \
if (pending_) { \
func(); \
if (!InitOnceComplete(&once, 0, NULL)) \
if (!InitOnceComplete(&once_, 0, NULL)) \
abort(); \
} \
} while (0)