Remove some dead variables reported by Spirit.

This commit is contained in:
Bill Currie 2011-05-04 09:30:38 +09:00
parent 86703744ff
commit bc2174d92b

View file

@ -682,10 +682,7 @@ PL_ParsePropertyListItem (pldata_t *pl)
switch (pl->ptr[pl->pos]) {
case '{':
{
hashtab_t *dict;
item = PL_NewDictionary ();
dict = (hashtab_t *) item->data;
pl->pos++;
@ -764,10 +761,7 @@ PL_ParsePropertyListItem (pldata_t *pl)
}
case '(': {
plarray_t *a;
item = PL_NewArray ();
a = (plarray_t *) item->data;
pl->pos++;