2010-11-15 Marcus Brinkmann <mb@g10code.com>

* w32-util.c (_gpgme_w32ce_get_debug_envvar): Fix return value.
This commit is contained in:
Marcus Brinkmann 2010-11-15 15:11:59 +00:00
parent f2890cc064
commit 15ef3c9eeb
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2010-11-15 Marcus Brinkmann <mb@g10code.com>
* w32-util.c (_gpgme_w32ce_get_debug_envvar): Fix return value.
2010-11-15 Werner Koch <wk@g10code.com>
* data-compat.c (gpgme_data_new_from_filepart)

View File

@ -634,6 +634,6 @@ _gpgme_w32ce_get_debug_envvar (void)
free (tmp);
tmp = NULL;
}
return NULL;
return tmp;
}
#endif /*HAVE_W32CE_SYSTEM*/