ICU-1548 use 0, not NULL :-)

X-SVN-Rev: 7660
This commit is contained in:
Yves Arrouye 2002-02-14 05:53:56 +00:00
parent b52105aed5
commit 2e05f13093

View File

@ -2828,7 +2828,7 @@ unorm_concatenate(const UChar *left, int32_t leftLength,
if(*pErrorCode==U_BUFFER_OVERFLOW_ERROR) {
if(!u_growBufferFromStatic(stackBuffer, &buffer, &bufferCapacity, 2*bufferLength, 0)) {
*pErrorCode=U_MEMORY_ALLOCATION_ERROR;
return NULL;
return 0;
}
/* just copy from the left string: we know the boundary already */
@ -2852,7 +2852,7 @@ unorm_concatenate(const UChar *left, int32_t leftLength,
if(*pErrorCode==U_BUFFER_OVERFLOW_ERROR) {
if(!u_growBufferFromStatic(stackBuffer, &buffer, &bufferCapacity, bufferLength+rightBoundary, 0)) {
*pErrorCode=U_MEMORY_ALLOCATION_ERROR;
return NULL;
return 0;
}
/* just copy from the right string: we know the boundary already */