forked from e16/e16
1
0
Fork 0

Mon Nov 15 14:53:40 PST 1999

(Mandrake)

fixed an uninitialized memory check in menus.c (reported by Alan Stange - this
man is getting it on with debuggers - I will put his name in the credits
sometime this week for 0.16.3)


SVN revision: 1315
This commit is contained in:
Mandrake 1999-11-15 21:54:26 +00:00
parent af15c6e936
commit 99116bd5ff
3 changed files with 11 additions and 0 deletions

View File

@ -3956,3 +3956,12 @@ Mon Nov 15 09:34:29 PST 1999
(Mandrake)
fixed a pretty nasty uninitialized memory test.
-------------------------------------------------------------------------------
Mon Nov 15 14:53:40 PST 1999
(Mandrake)
fixed an uninitialized memory check in menus.c (reported by Alan Stange - this
man is getting it on with debuggers - I will put his name in the credits
sometime this week for 0.16.3)

View File

@ -3,6 +3,7 @@ iconbox names displayed turned off WORKS now
some odd, can't-see-how-it-could-possibly-trigger potential segfault in drawupdate code
bounds check in icccm.c out of bounds in ICCCM_Configure()
fixed a uninitialized memory check in buttons.c CreateButton()
fixed an uninitialized memory area in menus.c in CreateMenu()
The Road to 0.17 (post 0.16.x):
File Manager Preview Application (you'll hopefully get a chance to see a little bit of a preview of what E's filemanager will look like)

View File

@ -507,6 +507,7 @@ CreateMenu(void)
EDBUG(5, "CreateMenu");
m = Emalloc(sizeof(Menu));
m->ref_count = 0;
m->name = NULL;
m->title = NULL;
m->style = NULL;