2008-07-18 Ken Werner <ken.werner@de.ibm.com>
* libc/machine/spu/strcpy.h: Fix error in previous patch.
This commit is contained in:
parent
8d7e80c2e1
commit
b47d83c645
@ -1,3 +1,7 @@
|
|||||||
|
2008-07-18 Ken Werner <ken.werner@de.ibm.com>
|
||||||
|
|
||||||
|
* libc/machine/spu/strcpy.h: Fix error in previous patch.
|
||||||
|
|
||||||
2008-07-17 Jeff Johnston <jjohnstn@redhat.com>
|
2008-07-17 Jeff Johnston <jjohnstn@redhat.com>
|
||||||
|
|
||||||
* libc/include/assert.h (__ASSERT_FUNC): Define to __FUNCTION__ when
|
* libc/include/assert.h (__ASSERT_FUNC): Define to __FUNCTION__ when
|
||||||
|
@ -178,7 +178,7 @@ static inline void * _strncpy(char * __restrict__ dest, const char *
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Pad null bytes if the length of the "src" is less than "n" (strncpy). */
|
/* Pad null bytes if the length of the "src" is less than "n" (strncpy). */
|
||||||
if (checklen && !lastzero && (maxlen != spu_extract(curlen,0)))
|
if (checklen && !lastzero && spu_extract(curlen, 0))
|
||||||
memset(dest + spu_extract(curlen, 0), 0, maxlen - spu_extract(curlen, 0));
|
memset(dest + maxlen - spu_extract(curlen, 0), 0, spu_extract(curlen, 0));
|
||||||
return (dest);
|
return (dest);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user