[bdf] Fix Savannah bug #35658.

* src/bdf/bdflib.c (_bdf_list_split): Initialize `field' elements
properly.
This commit is contained in:
Werner Lemberg 2012-03-01 15:15:00 +01:00
parent 292144b44a
commit d9c1659610
2 changed files with 14 additions and 0 deletions

View File

@ -1,3 +1,10 @@
2012-03-01 Werner Lemberg <wl@gnu.org>
[bdf] Fix Savannah bug #35658.
* src/bdf/bdflib.c (_bdf_list_split): Initialize `field' elements
properly.
2012-03-01 Werner Lemberg <wl@gnu.org>
[psaux] Fix Savannah bug #35657.

View File

@ -563,6 +563,13 @@
/* Initialize the list. */
list->used = 0;
if ( list->size )
{
list->field[0] = (char*)empty;
list->field[1] = (char*)empty;
list->field[2] = (char*)empty;
list->field[3] = (char*)empty;
}
/* If the line is empty, then simply return. */
if ( linelen == 0 || line[0] == 0 )