Merge "libsysutils: fix null pointer and memory leak issue"

This commit is contained in:
Colin Cross 2013-05-21 21:13:50 +00:00 committed by Gerrit Code Review
commit 51a2e4d5d4
1 changed files with 8 additions and 1 deletions

View File

@ -112,6 +112,12 @@ char *SocketClient::quoteArg(const char *arg) {
char *result = (char *)malloc(len * 2 + 3);
char *current = result;
const char *end = arg + len;
char *oldresult;
if(result == NULL) {
SLOGW("malloc error (%s)", strerror(errno));
return NULL;
}
*(current++) = '"';
while (arg < end) {
@ -125,8 +131,9 @@ char *SocketClient::quoteArg(const char *arg) {
}
*(current++) = '"';
*(current++) = '\0';
oldresult = result; // save pointer in case realloc fails
result = (char *)realloc(result, current-result);
return result;
return result ? result : oldresult;
}