Mon Nov 15 09:34:29 PST 1999

(Mandrake)

fixed a pretty nasty uninitialized memory test.


SVN revision: 1311
This commit is contained in:
Mandrake 1999-11-15 16:37:26 +00:00
parent 2304be7011
commit 6b026fb513
2 changed files with 8 additions and 0 deletions

View File

@ -3949,3 +3949,10 @@ Mon Nov 15 09:07:28 PST 1999
(Raster)
bounds checking fix :) thanks alan strange :)
-------------------------------------------------------------------------------
Mon Nov 15 09:34:29 PST 1999
(Mandrake)
fixed a pretty nasty uninitialized memory test.

View File

@ -36,6 +36,7 @@ CreateButton(char *name, ImageClass * iclass, ActionClass * aclass,
b = Emalloc(sizeof(Button));
b->name = duplicate(name);
b->label = duplicate(label);
b->iclass = iclass;
if (!b->iclass)