X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=src%2Fdumper.c;h=153136796b8c20892b1298062b756dd1a89ad69d;hb=8b2e8ef2dee7da2f0d4cea712b0fc55902c3cff7;hp=c1a9912e1f3516bc98563a0c9c53a90c5e1aab70;hpb=de7caee5f47b0888cb3895ce8c09d745f2fc35aa;p=chise%2Fxemacs-chise.git- diff --git a/src/dumper.c b/src/dumper.c index c1a9912..1531367 100644 --- a/src/dumper.c +++ b/src/dumper.c @@ -566,7 +566,7 @@ pdump_register_object (Lisp_Object obj) if (imp->description) { int me = depth++; - if (me>65536) + if (me>=65536) { stderr_out ("Backtrace overflow, loop ?\n"); ABORT (); @@ -601,7 +601,7 @@ pdump_register_struct (const void *data, { int me = depth++; int i; - if (me>65536) + if (me>=65536) { stderr_out ("Backtrace overflow, loop ?\n"); ABORT ();