mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-09-27 17:52:58 +02:00
Fix memory overrun
svn path=/branches/glib-2-14/; revision=5927
This commit is contained in:
@@ -1,3 +1,7 @@
|
||||
2007-11-24 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* tests/base64-test.c: Fix memory overrun.
|
||||
|
||||
2007-11-24 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* NEWS: Updates
|
||||
|
@@ -24,7 +24,7 @@ test_incremental (gboolean line_break,
|
||||
guchar *data2;
|
||||
|
||||
data2 = g_malloc (length);
|
||||
text = g_malloc (length * 2);
|
||||
text = g_malloc (length * 4);
|
||||
|
||||
len = 0;
|
||||
state = 0;
|
||||
|
Reference in New Issue
Block a user