malloc(0) is non-portable (may return a pointer to no space, or it
may return NULL. Just set the result to NULL without bothering to
call malloc(), as is done earlier in this function.
Change-Id: Ic3562e722113a1409ec7c30bd571e9470b3e092b
Reviewed-on: http://gerrit.openafs.org/7766
Tested-by: BuildBot <buildbot@rampaginggeek.com>
Reviewed-by: Derrick Brashear <shadow@dementix.org>
no_xfer_abort:
charListPtr->charListT_len = 0;
- charListPtr->charListT_val = malloc(0);
+ charListPtr->charListT_val = NULL;
abort_exit:
if (ut)