mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-31 08:41:03 +00:00
Changes by wacko@power1.snu.ac.kr (Yoo C. Chung). See ChangeLog Jan 20
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@2202 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
af908b993e
commit
c07f920c70
7 changed files with 103 additions and 42 deletions
|
@ -247,6 +247,7 @@ static Class NSMutableData_concrete_class;
|
|||
char *dest;
|
||||
int length = [self length];
|
||||
int i,j;
|
||||
id ret;
|
||||
|
||||
#define num2char(num) ((num) < 0xa ? ((num)+'0') : ((num)+0x57))
|
||||
|
||||
|
@ -263,7 +264,9 @@ static Class NSMutableData_concrete_class;
|
|||
}
|
||||
dest[j++] = '>';
|
||||
dest[j] = '\0';
|
||||
return [NSString stringWithCString: dest];
|
||||
ret = [NSString stringWithCString: dest];
|
||||
free(dest);
|
||||
return ret;
|
||||
}
|
||||
|
||||
- (void)getBytes: (void*)buffer
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue