mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
Don't reference uninitialized memory.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@13331 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
@@ -1,3 +1,7 @@
|
||||
2006-02-20 David Hampton <hampton@employees.org>
|
||||
|
||||
* lib/libqof/qof/guid.c: Don't reference uninitialized memory.
|
||||
|
||||
2006-02-20 Neil Williams <linux@codehelp.co.uk>
|
||||
|
||||
* lib/libqof/qof/gnc-event.c :
|
||||
@@ -17,7 +21,6 @@
|
||||
* lib/libqof/qof/qof.h : Replace files.
|
||||
* lib/libqof/qof/Makefile.am : Replace files.
|
||||
|
||||
|
||||
2006-02-20 David Hampton <hampton@employees.org>
|
||||
|
||||
* src/gnome/dialog-scheduledxaction.c:
|
||||
|
||||
@@ -257,7 +257,7 @@ init_from_dir(const char *dirname, unsigned int max_files)
|
||||
if (de == NULL)
|
||||
break;
|
||||
|
||||
md5_process_bytes(de, sizeof(struct dirent), &guid_context);
|
||||
md5_process_bytes(de, strlen(de->d_name), &guid_context);
|
||||
total += sizeof(struct dirent);
|
||||
|
||||
result = snprintf(filename, sizeof(filename),
|
||||
|
||||
Reference in New Issue
Block a user