mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-26 22:31:05 +00:00
[util] Fix some unitialized vars
Not sure how they got past gcc. Maybe a bug in 9.3.0?
This commit is contained in:
parent
2b23e01d9a
commit
9f4f63796b
1 changed files with 2 additions and 2 deletions
|
@ -1129,7 +1129,7 @@ PL_ParseDictionary (const plfield_t *fields, const plitem_t *dict, void *data,
|
|||
{
|
||||
void **list, **l;
|
||||
dictkey_t *current;
|
||||
int result;
|
||||
int result = 1;
|
||||
plparser_t parser;
|
||||
|
||||
if (dict->type != QFDictionary) {
|
||||
|
@ -1182,7 +1182,7 @@ VISIBLE int
|
|||
PL_ParseArray (const plfield_t *field, const plitem_t *array, void *data,
|
||||
plitem_t *messages)
|
||||
{
|
||||
int result;
|
||||
int result = 1;
|
||||
plparser_t parser;
|
||||
plarray_t *plarray = (plarray_t *) array->data;
|
||||
plelement_t *element = (plelement_t *) field->data;
|
||||
|
|
Loading…
Reference in a new issue