Andreas Barth wrote: > * Lior Kaplan ([EMAIL PROTECTED]) [061224 20:21]: >> >From the changelog: >> gphpedit (0.9.91-3) unstable; urgency=low >> >> * Apply a patch to prevent gphpedit from crashing after searching & >> replacing. (Closes: #396325) > > This change isn't really making me comfortable: > - g_free(replace_all_dialog); > + // Comment the line bellow as suggested at > + // http://www.gphpedit.org/bugs/bug_view.php?id=132 to avoid from > + // a crash after searching & replacing. > + //g_free(replace_all_dialog);
The source to the problem is doing a double free of the same resource. Commenting out the extra free() is the simplest solution (and works). More info in the upstream bug report. -- Lior Kaplan [EMAIL PROTECTED] GPG fingerprint: C644 D0B3 92F4 8FE4 4662 B541 1558 9445 99E8 1DA0 -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

