ICU-4707 There is no need to set s-fChars to 0 when it's already known to be 0 in the if statement.

X-SVN-Rev: 19516
This commit is contained in:
George Rhoten 2006-04-04 19:28:14 +00:00
parent ce8b1ede60
commit 735bfbfbc0

View File

@ -1,7 +1,7 @@
/* /*
******************************************************************************* *******************************************************************************
* *
* Copyright (C) 1998-2004, International Business Machines * Copyright (C) 1998-2006, International Business Machines
* Corporation and others. All Rights Reserved. * Corporation and others. All Rights Reserved.
* *
******************************************************************************* *******************************************************************************
@ -206,7 +206,6 @@ ustr_resize(struct UString *s,
s->fChars = (UChar*) uprv_realloc(s->fChars, sizeof(UChar) * (len + 1)); s->fChars = (UChar*) uprv_realloc(s->fChars, sizeof(UChar) * (len + 1));
if(s->fChars == 0) { if(s->fChars == 0) {
*status = U_MEMORY_ALLOCATION_ERROR; *status = U_MEMORY_ALLOCATION_ERROR;
s->fChars = 0;
s->fLength = s->fCapacity = 0; s->fLength = s->fCapacity = 0;
return; return;
} }