2001-07-04 Dave Peticolas <dave@krondo.com>

* Makefile.am: add gnc-glossary.txt to the dist

	* src/engine/sixtp.c (sixtp_handle_catastrophe): fix bug -- don't
	destroy last stack frame


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@4866 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Dave Peticolas 2001-07-04 08:30:54 +00:00
parent 3de30ea6c0
commit 3d5c58147f
3 changed files with 14 additions and 0 deletions

View File

@ -1,3 +1,10 @@
2001-07-04 Dave Peticolas <dave@krondo.com>
* Makefile.am: add gnc-glossary.txt to the dist
* src/engine/sixtp.c (sixtp_handle_catastrophe): fix bug -- don't
destroy last stack frame
2001-07-03 Dave Peticolas <dave@krondo.com>
* src/scm/report/register.scm: add exported functions and needed modules

View File

@ -35,6 +35,7 @@ EXTRA_DIST = \
gnucash.lsm \
make-gnucash-patch.in \
po/.cvsignore \
po/gnc-glossary.txt \
po/README
## We borrow guile's convention and use @-...-@ as the substitution

View File

@ -631,6 +631,12 @@ sixtp_handle_catastrophe(sixtp_sax_data *sax_data) {
}
}
if((*stack)->next == NULL) {
/* This is the top of the stack. The top frame seems to want to
* be destroyed by sixtp_context_destroy. */
break;
}
*stack = sixtp_pop_and_destroy_frame(*stack);
}
}