Update of /cvsroot/setedit/setedit/sdg
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv22919/sdg
Modified Files:
txhgen.cc
Log Message:
* Fixed: Potential use of unitilialized var.
Index: txhgen.cc
===================================================================
RCS file: /cvsroot/setedit/setedit/sdg/txhgen.cc,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** txhgen.cc 2 Jun 2015 16:38:22 -0000 1.12
--- txhgen.cc 17 Nov 2016 18:30:38 -0000 1.13
***************
*** 783,787 ****
--- 783,790 ----
if (!*s)
+ {
+ *num=MAX_DEFS; // Force to be unused
return s;
+ }
if (ucisdigit(*s))
{
|