Message73330
| Author |
amaury.forgeotdarc |
| Recipients |
amaury.forgeotdarc, jcea, vstinner |
| Date |
2008年09月17日.11:25:04 |
| SpamBayes Score |
0.004960984 |
| Marked as misclassified |
No |
| Message-id |
<1221650721.73.0.457296195922.issue3885@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
Not only in these functions, but anywhere "dummy=" is followed by a
Py_XDECREF(dummy);
And code like this must also be changed (in DB_open):
if (makeDBError(err)) {
PyObject *dummy;
dummy=DB_close_internal(self,0);
Py_XDECREF(dummy);
return NULL;
}
if DB_close_internal() raises an exception it will replace the original
error set by makeDBError(). I'm not sure this is desirable. |
|
History
|
|---|
| Date |
User |
Action |
Args |
| 2008年09月17日 11:25:21 | amaury.forgeotdarc | set | recipients:
+ amaury.forgeotdarc, jcea, vstinner |
| 2008年09月17日 11:25:21 | amaury.forgeotdarc | set | messageid: <1221650721.73.0.457296195922.issue3885@psf.upfronthosting.co.za> |
| 2008年09月17日 11:25:05 | amaury.forgeotdarc | link | issue3885 messages |
| 2008年09月17日 11:25:05 | amaury.forgeotdarc | create |
|