1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-03 22:56:33 +02:00

See ChangeLog: Sat Oct 9 20:34:41 CEST 1999 Werner Koch

This commit is contained in:
Werner Koch 1999-10-09 18:37:05 +00:00
parent 79b55e0231
commit 06fb4bd4b0
23 changed files with 559 additions and 563 deletions

View file

@ -1,3 +1,7 @@
Sat Oct 9 20:34:41 CEST 1999 Werner Koch <wk@gnupg.de>
* Makefile.am: Removed libtool.
Fri Oct 8 20:32:01 CEST 1999 Werner Koch <wk@gnupg.de>
* w32reg.c: New.

View file

@ -2,11 +2,11 @@
INCLUDES = -I$(top_srcdir)/include -I$(top_srcdir)/intl
noinst_LTLIBRARIES = libutil.la
noinst_LIBRARIES = libutil.a
libutil_la_LDFLAGS =
libutil_la_SOURCES = g10u.c logger.c fileutil.c miscutil.c strgutil.c \
#libutil_a_LDFLAGS =
libutil_a_SOURCES = g10u.c logger.c fileutil.c miscutil.c strgutil.c \
ttyio.c argparse.c memory.c secmem.c errors.c iobuf.c \
dotlock.c http.c simple-gettext.c w32reg.c

View file

@ -71,7 +71,7 @@ read_w32_registry_string( const char *root, const char *dir, const char *name )
if( !result )
goto leave;
if( RegQueryValueEx( key_handle, name, 0, NULL, result, &n1 ) ) {
m_free(result); result = NULL;
free(result); result = NULL;
goto leave;
}
result[nbytes] = 0; /* make sure it is really a string */