Mailinglist Archive: opensuse-bugs (15092 mails)
| < Previous | Next > |
[Bug 308978] rekall crashes on open mysql table
- From: bugzilla_noreply@xxxxxxxxxx
- Date: Wed, 12 Sep 2007 10:15:03 -0600 (MDT)
- Message-id: <20070912161503.347A7245350@xxxxxxxxxxxxxxxxxxxxxx>
https://bugzilla.novell.com/show_bug.cgi?id=308978#c9
--- Comment #9 from Dirk Mueller <dmueller@xxxxxxxxxx> 2007-09-12 10:15:02 MST ---
jan: code looks like this:
void sipDeleteThis(sipThisType *sipThis)
{
/* Ignore any errors. Don't indirect. */
if (sipThis -> u.cppPtr != NULL)
sipOMRemoveObject(&cppPyMap,sipThis -> u.cppPtr,sipThis);
while (sipThis -> pySigList != NULL)
{
sipPySig *ps;
sipPySigRx *psrx;
/* Take this one out of the list. */
ps = sipThis -> pySigList;
sipThis -> pySigList = ps -> next;
while ((psrx = ps -> rxlist) != NULL)
{
ps -> rxlist = psrx -> next;
if (psrx -> rx.name != NULL)
sipFree((void *)psrx -> rx.name);
sipFree((void *)psrx);
}
sipFree((void *)ps -> name);
sipFree((void *)ps);
}
PyMem_DEL(sipThis);
}
in ./script/python/lib-2.2.0/siplib.c
--
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
--- Comment #9 from Dirk Mueller <dmueller@xxxxxxxxxx> 2007-09-12 10:15:02 MST ---
jan: code looks like this:
void sipDeleteThis(sipThisType *sipThis)
{
/* Ignore any errors. Don't indirect. */
if (sipThis -> u.cppPtr != NULL)
sipOMRemoveObject(&cppPyMap,sipThis -> u.cppPtr,sipThis);
while (sipThis -> pySigList != NULL)
{
sipPySig *ps;
sipPySigRx *psrx;
/* Take this one out of the list. */
ps = sipThis -> pySigList;
sipThis -> pySigList = ps -> next;
while ((psrx = ps -> rxlist) != NULL)
{
ps -> rxlist = psrx -> next;
if (psrx -> rx.name != NULL)
sipFree((void *)psrx -> rx.name);
sipFree((void *)psrx);
}
sipFree((void *)ps -> name);
sipFree((void *)ps);
}
PyMem_DEL(sipThis);
}
in ./script/python/lib-2.2.0/siplib.c
--
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
| < Previous | Next > |