[gs-bugs] [Bug 692925] PDF causes a crash. . .

bugzilla-daemon at ghostscript.com bugzilla-daemon at ghostscript.com
Thu Mar 15 19:34:57 UTC 2012


http://bugs.ghostscript.com/show_bug.cgi?id=692925

--- Comment #6 from Pedro Rivera <pedro.rivera.651 at gmail.com> 2012-03-15 19:34:56 UTC ---
Hi Robin,

I turned on memento as you suggested. We put the program in debug and pin
pointed the crash to the following statement in base_object.c (line #937):

void
pdf_drop_obj(pdf_obj *obj)
{
    if (!obj)
        return;
    if (--obj->refs)
        return;
    if (obj->kind == PDF_ARRAY)
        pdf_free_array(obj);
    else if (obj->kind == PDF_DICT)
        pdf_free_dict(obj);
    else
        fz_free(obj->ctx, obj); <<<== Crashes here every time!
}

I still don't know why this happens but we are investigating some more.

Thanks,

Pedro

-- 
Configure bugmail: http://bugs.ghostscript.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.


More information about the gs-bugs mailing list