debuggers.hg
changeset 3156:6595a3a973e3
bitkeeper revision 1.1159.193.1 (41a5c0f5Uc6PRNRtIoxM4YuW1UdQVQ)
Merge xenbk@gandalf:/var/bk/xen-2.0-testing.bk
into wray-m-3.hpl.hp.com:/home/mjw/repos-bk/xen-2.0-testing.bk
Merge xenbk@gandalf:/var/bk/xen-2.0-testing.bk
into wray-m-3.hpl.hp.com:/home/mjw/repos-bk/xen-2.0-testing.bk
author | mjw@wray-m-3.hpl.hp.com |
---|---|
date | Thu Nov 25 11:24:37 2004 +0000 (2004-11-25) |
parents | e0351a3744a5 f5685b2bcb25 |
children | aa143d62d43d |
files | tools/libxutil/sxpr_parser.c |
line diff
1.1 --- a/tools/libxutil/sxpr_parser.c Wed Nov 24 11:34:32 2004 +0000 1.2 +++ b/tools/libxutil/sxpr_parser.c Thu Nov 25 11:24:37 2004 +0000 1.3 @@ -258,8 +258,9 @@ int Parser_pop(Parser *p){ 1.4 int err = 0; 1.5 ParserState *s = p->state; 1.6 p->state = s->parent; 1.7 - if (p->start_state == s) 1.8 + if (p->start_state == s) { 1.9 p->start_state = NULL; 1.10 + } 1.11 ParserState_free(s); 1.12 return err; 1.13 }