1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
Index: glib/gwin32.c
===================================================================
--- glib/gwin32.c (revision 100)
+++ glib/gwin32.c (revision 101)
@@ -1223,6 +1223,7 @@
return g_strdup (result);
}
+#ifndef SIDEBYSIDE
key = g_strconcat ("Software\\", package, NULL);
nbytes = 0;
@@ -1245,7 +1246,7 @@
if (reg_key != NULL)
RegCloseKey (reg_key);
-
+
g_free (key);
if (result)
@@ -1254,6 +1255,7 @@
G_UNLOCK (package_dirs);
return g_strdup (result);
}
+#endif
G_UNLOCK (package_dirs);
}
|