mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
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:
parent
3de30ea6c0
commit
3d5c58147f
@ -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
|
||||
|
@ -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
|
||||
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user