mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +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
09463a1986
commit
a9539f5762
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>
|
||||
|
||||
* config/procfs.m4: Force disable /proc on Irix. Force enable
|
||||
|
|
|
@ -3754,6 +3754,7 @@ static NSCharacterSet *tokenSet = nil;
|
|||
md = [[NSMutableData alloc] initWithLength: 40];
|
||||
[md setLength: encodebase64([md mutableBytes], output, 20)];
|
||||
result = [[NSString alloc] initWithData: md encoding: NSASCIIStringEncoding];
|
||||
RELEASE(md);
|
||||
return AUTORELEASE(result);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue