*** empty log message ***
This commit is contained in:
parent
aa41dd0761
commit
c0256dbedb
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* $Id: awk_i.h,v 1.59 2006-09-25 06:17:19 bacon Exp $
|
* $Id: awk_i.h,v 1.60 2006-09-27 14:11:31 bacon Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef _XP_AWK_AWKI_H_
|
#ifndef _XP_AWK_AWKI_H_
|
||||||
@ -25,9 +25,9 @@ typedef struct xp_awk_tree_t xp_awk_tree_t;
|
|||||||
#include <xp/awk/str.h>
|
#include <xp/awk/str.h>
|
||||||
#include <xp/awk/rex.h>
|
#include <xp/awk/rex.h>
|
||||||
#include <xp/awk/map.h>
|
#include <xp/awk/map.h>
|
||||||
|
#include <xp/awk/tree.h>
|
||||||
#include <xp/awk/val.h>
|
#include <xp/awk/val.h>
|
||||||
#include <xp/awk/func.h>
|
#include <xp/awk/func.h>
|
||||||
#include <xp/awk/tree.h>
|
|
||||||
#include <xp/awk/tab.h>
|
#include <xp/awk/tab.h>
|
||||||
#include <xp/awk/parse.h>
|
#include <xp/awk/parse.h>
|
||||||
#include <xp/awk/run.h>
|
#include <xp/awk/run.h>
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* $Id: parse.c,v 1.181 2006-09-22 14:04:25 bacon Exp $
|
* $Id: parse.c,v 1.182 2006-09-27 14:11:31 bacon Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <xp/awk/awk_i.h>
|
#include <xp/awk/awk_i.h>
|
||||||
@ -1952,6 +1952,7 @@ static xp_awk_nde_t* __parse_primary (xp_awk_t* awk)
|
|||||||
|
|
||||||
if (__get_token(awk) == -1)
|
if (__get_token(awk) == -1)
|
||||||
{
|
{
|
||||||
|
XP_AWK_FREE (awk, nde->str);
|
||||||
XP_AWK_FREE (awk, nde);
|
XP_AWK_FREE (awk, nde);
|
||||||
return XP_NULL;
|
return XP_NULL;
|
||||||
}
|
}
|
||||||
@ -1986,6 +1987,7 @@ static xp_awk_nde_t* __parse_primary (xp_awk_t* awk)
|
|||||||
|
|
||||||
if (__get_token(awk) == -1)
|
if (__get_token(awk) == -1)
|
||||||
{
|
{
|
||||||
|
XP_AWK_FREE (awk, nde->str);
|
||||||
XP_AWK_FREE (awk, nde);
|
XP_AWK_FREE (awk, nde);
|
||||||
return XP_NULL;
|
return XP_NULL;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user