Merge "libsysutils: fix null pointer and memory leak issue"
This commit is contained in:
commit
51a2e4d5d4
|
@ -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;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue