This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author pitrou
Recipients flox, pitrou, theller
Date 2010-01-16.17:42:44
SpamBayes Score 0.00077770907
Marked as misclassified No
Message-id <1263663766.27.0.386827178308.issue7703@psf.upfronthosting.co.za>
In-reply-to
Content
When the following snippet is taken:

	if (_PyString_Resize(&rv,
			   (bin_data -
			    (unsigned char *)PyString_AS_STRING(rv))) < 0) {
		PyBuffer_Release(&pascii);
		Py_DECREF(rv);
		rv = NULL;
	}

pascii will get released a second time at the end of function. The rest is fine, I'm gonna fix it myself.
History
Date User Action Args
2010-01-16 17:42:46pitrousetrecipients: + pitrou, theller, flox
2010-01-16 17:42:46pitrousetmessageid: <1263663766.27.0.386827178308.issue7703@psf.upfronthosting.co.za>
2010-01-16 17:42:44pitroulinkissue7703 messages
2010-01-16 17:42:44pitroucreate