mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 09:04:13 +00:00
Merge branch 'atexit'
This commit is contained in:
commit
b280b40a15
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2024-11-24 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Source/NSSocketPort.m: fix leak of data object when establishing a
|
||||
new connection.
|
||||
|
||||
2024-11-22 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Tools/AGSIndex: (-makeRefs:) process child nodes in loop rather
|
||||
|
|
|
@ -1247,7 +1247,8 @@ static Class runLoopClass;
|
|||
* first thing to do is send out port information (after setting
|
||||
* up a TLS session if necessary).
|
||||
*/
|
||||
ASSIGN(cData, newDataWithEncodedPort(p));
|
||||
RELEASE(cData);
|
||||
cData = newDataWithEncodedPort(p);
|
||||
cLength = 0;
|
||||
|
||||
#if defined(HAVE_GNUTLS)
|
||||
|
|
Loading…
Reference in a new issue