Merge branch 'atexit'

This commit is contained in:
rfm 2024-11-28 11:48:39 +00:00
commit b280b40a15
2 changed files with 7 additions and 1 deletions

View file

@ -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

View file

@ -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)