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.

classification
Title: possible memory leaks in err handling
Type: Stage:
Components: Extension Modules Versions: Python 2.2
process
Status: closed Resolution: accepted
Dependencies: Superseder:
Assigned To: loewis Nosy List: loewis, nnorwitz, tim.peters
Priority: normal Keywords:

Created on 2001-11-04 15:02 by nnorwitz, last changed 2022-04-10 16:04 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
py-pos-leaks nnorwitz, 2001-11-04 15:02 patch to correct memory leaks in err handling code
Messages (3)
msg7355 - (view) Author: Neal Norwitz (nnorwitz) * (Python committer) Date: 2001-11-04 15:02
This patch fixes problems caught during code inspection
they seem correct, but I don't think the regression
tests hit these paths.  I'm not sure how to test them.

Files in patch:

Modules/getaddrinfo.c
Modules/socketmodule.c
Python/compile.c
msg7356 - (view) Author: Tim Peters (tim.peters) * (Python committer) Date: 2001-11-04 19:27
Logged In: YES 
user_id=31435

I applied (just) the compile.c part of the patch (thanks!), 
in

Python/compile.c; new revision: 2.228

Reassigned to MvL for the getaddrinfo and socketmodule 
parts.
msg7357 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2001-11-07 08:32
Logged In: YES 
user_id=21627

I just applied the missing parts in a slightly massaged
form, as getaddrinfo.c 1.9 and socketmodule.c 1.194.
History
Date User Action Args
2022-04-10 16:04:36adminsetgithub: 35463
2001-11-04 15:02:10nnorwitzcreate