Kaydet (Commit) 2cfc6259 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#1209713 Dereference null return value

Change-Id: I8aba67ae5bf5ffb7530be8f6d5b2511b554717db
üst 7db11e4a
......@@ -1309,8 +1309,12 @@ char *hcolor2str(uchar color, uchar shade, char *buf, bool bIsChar)
if( src[0] == 'C' && src[1] == ':' && src[2] == '\\' ) // Home Dir
{
ret.append("file://");
ret.append(getenv("HOME"));
const char *pHome = getenv("HOME");
if (pHome)
{
ret.append(pHome);
ret.push_back('/');
}
i = 3; // skip first 3
}
else if( src[0] == 'D' && src[1] == ':' && src[2] == '\\' ) // Root Dir
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment