mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-31 00:30:53 +00:00
Fix another leak
This commit is contained in:
parent
99bb50d2c0
commit
021812f43d
2 changed files with 6 additions and 4 deletions
|
@ -1173,12 +1173,12 @@ debugWrite(GSHTTPURLHandle *handle, NSData *data)
|
|||
return;
|
||||
}
|
||||
|
||||
in = [[NSString alloc] initWithFormat: @"(%@:%@ <-- %@:%@)",
|
||||
ASSIGN(in, [NSString stringWithFormat: @"(%@:%@ <-- %@:%@)",
|
||||
[sock socketLocalAddress], [sock socketLocalService],
|
||||
[sock socketAddress], [sock socketService]];
|
||||
out = [[NSString alloc] initWithFormat: @"(%@:%@ --> %@:%@)",
|
||||
[sock socketAddress], [sock socketService]]);
|
||||
ASSIGN(out, [NSString stringWithFormat: @"(%@:%@ --> %@:%@)",
|
||||
[sock socketLocalAddress], [sock socketLocalService],
|
||||
[sock socketAddress], [sock socketService]];
|
||||
[sock socketAddress], [sock socketService]]);
|
||||
|
||||
if (debug)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue