projects
/
platform
/
upstream
/
glib.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cdd43d4
)
win32: fix GPrivate fallout
author
Ryan Lortie
<desrt@desrt.ca>
Mon, 3 Oct 2011 01:13:14 +0000
(21:13 -0400)
committer
Ryan Lortie
<desrt@desrt.ca>
Mon, 3 Oct 2011 01:31:45 +0000
(21:31 -0400)
Fix minor mistake in win32 GPrivate code.
glib/gthread-win32.c
patch
|
blob
|
history
diff --git
a/glib/gthread-win32.c
b/glib/gthread-win32.c
index 1ed2842f782d596a591213985b63e305d2d090b9..20d2e21f24f7b059a349fd26aad550c7abef203c 100644
(file)
--- a/
glib/gthread-win32.c
+++ b/
glib/gthread-win32.c
@@
-436,7
+436,7
@@
g_private_replace (GPrivate *key,
DWORD impl = g_private_get_impl (key);
gpointer old;
- old = TlsGetValue (impl
, value
);
+ old = TlsGetValue (impl);
if (old && key->notify)
key->notify (old);
TlsSetValue (impl, value);