mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-31 00:30:53 +00:00
Fixed minor memory leak.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@17767 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
95d842117a
commit
dbcea88742
2 changed files with 6 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2003-10-02 Richard Frith-Macdonald <rfm@gnu.org>
|
||||||
|
|
||||||
|
* Source/Additions/GSMime.m: ([GSMimeDocument-makeBoundary])
|
||||||
|
fixed memory leak.
|
||||||
|
|
||||||
2003-09-30 Adam Fedor <fedor@gnu.org>
|
2003-09-30 Adam Fedor <fedor@gnu.org>
|
||||||
|
|
||||||
* config/procfs.m4: Force disable /proc on Irix. Force enable
|
* config/procfs.m4: Force disable /proc on Irix. Force enable
|
||||||
|
|
|
@ -3754,6 +3754,7 @@ static NSCharacterSet *tokenSet = nil;
|
||||||
md = [[NSMutableData alloc] initWithLength: 40];
|
md = [[NSMutableData alloc] initWithLength: 40];
|
||||||
[md setLength: encodebase64([md mutableBytes], output, 20)];
|
[md setLength: encodebase64([md mutableBytes], output, 20)];
|
||||||
result = [[NSString alloc] initWithData: md encoding: NSASCIIStringEncoding];
|
result = [[NSString alloc] initWithData: md encoding: NSASCIIStringEncoding];
|
||||||
|
RELEASE(md);
|
||||||
return AUTORELEASE(result);
|
return AUTORELEASE(result);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue