mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
avoid compiler warning
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@36522 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
103e3e32b9
commit
0fdebe8513
1 changed files with 4 additions and 2 deletions
|
@ -429,10 +429,12 @@ decodeWord(unsigned char *dst, const unsigned char *src, const unsigned char *en
|
|||
NSUInteger i;
|
||||
|
||||
for (i = pos; i < 4; i++)
|
||||
buf[i] = '\0';
|
||||
{
|
||||
buf[i] = '\0';
|
||||
}
|
||||
pos--;
|
||||
decodebase64(dst, buf);
|
||||
}
|
||||
decodebase64(dst, buf);
|
||||
dst += pos;
|
||||
*dst = '\0';
|
||||
return dst;
|
||||
|
|
Loading…
Reference in a new issue