1 - Added comment to indicate awareness of lint complaints.
2 - Added/Removed some casts used with core allocation/deallocation.
This commit is contained in:
parent
9ef0eefc55
commit
858bd446fd
@ -41,10 +41,10 @@ char *str;
|
|||||||
s= s->nextsym;
|
s= s->nextsym;
|
||||||
}
|
}
|
||||||
/* not found, create an emty slot */
|
/* not found, create an emty slot */
|
||||||
s= (Symbol *) salloc(sizeof(Symbol));
|
/*NOSTRICT*/ s= (Symbol *) salloc(sizeof(Symbol));
|
||||||
s->symtype= DEFAULTTYPE;
|
s->symtype= DEFAULTTYPE;
|
||||||
s->nextsym= firstsym;
|
s->nextsym= firstsym;
|
||||||
s->symname= (char *) salloc(strlen(str)+1);
|
s->symname= (char *) salloc((unsigned)(strlen(str)+1));
|
||||||
strcpy(s->symname,str);
|
strcpy(s->symname,str);
|
||||||
firstsym= s;
|
firstsym= s;
|
||||||
if(debug) printf("%s allocated\n",str);
|
if(debug) printf("%s allocated\n",str);
|
||||||
@ -214,7 +214,7 @@ int type;
|
|||||||
while(s)
|
while(s)
|
||||||
{
|
{
|
||||||
firstsym = s->nextsym;
|
firstsym = s->nextsym;
|
||||||
free(s);
|
/*NOSTRICT*/ free((char *)s);
|
||||||
s= firstsym;
|
s= firstsym;
|
||||||
}
|
}
|
||||||
firstsym= alternate;
|
firstsym= alternate;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user