remove 'potentially uninitialized' warning
This commit is contained in:
parent
f40f5a5ae4
commit
dc1ee5f11f
|
|
@ -354,7 +354,7 @@ static int
|
||||||
INPparseNumMod(CKTcircuit *ckt, INPmodel *model, INPtables *tab, char **errMessage)
|
INPparseNumMod(CKTcircuit *ckt, INPmodel *model, INPtables *tab, char **errMessage)
|
||||||
{
|
{
|
||||||
struct card *txtCard; /* Text description of a card */
|
struct card *txtCard; /* Text description of a card */
|
||||||
GENcard *tmpCard; /* Processed description of a card */
|
GENcard *tmpCard = NULL; /* Processed description of a card */
|
||||||
IFcardInfo *info = NULL; /* Info about the type of card located */
|
IFcardInfo *info = NULL; /* Info about the type of card located */
|
||||||
char *cardName = NULL; /* name of a card */
|
char *cardName = NULL; /* name of a card */
|
||||||
int cardNum = 0; /* number of this card in the overall line */
|
int cardNum = 0; /* number of this card in the overall line */
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue