Added configure.ac and Makefile.am files to directory structure, added local variable initialization to several source files for -O3 optimization for GCC

git-svn-id: https://svn.code.sf.net/p/flaim/code/trunk@91 0109f412-320b-0410-ab79-c3e0c5ffbbe6
This commit is contained in:
jcalcote
2006-02-09 17:43:22 +00:00
parent 449cb775a6
commit f4da35e577
27 changed files with 1294 additions and 11 deletions

View File

@@ -2714,7 +2714,7 @@ RCODE F_RegExp::addLiteralExpr(
)
{
RCODE rc = NE_XFLM_OK;
REG_EXP * pTmpExpr;
REG_EXP * pTmpExpr = 0;
if (RC_BAD( rc = createRegExp( EXP_LITERAL, &pTmpExpr)))
{
@@ -3867,7 +3867,7 @@ Desc: Start an alternative - Called when we hit a left paren.
RCODE F_RegExp::startAlternative( void)
{
RCODE rc = NE_XFLM_OK;
REG_EXP * pTmpExpr;
REG_EXP * pTmpExpr = 0;
// If we were gathering up a literal, save it out.
@@ -4037,7 +4037,7 @@ RCODE F_RegExp::setExpression(
)
{
RCODE rc = NE_XFLM_OK;
REG_EXP * pTmpExpr;
REG_EXP * pTmpExpr = 0;
FLMUNICODE uzChar;
while (*puzRegExp)