kernel32/profile: Add a few NULL checks (Coverity).
This commit is contained in:
parent
0230695a29
commit
4a431afd69
|
@ -1324,6 +1324,12 @@ INT WINAPI GetPrivateProfileSectionW( LPCWSTR section, LPWSTR buffer,
|
|||
{
|
||||
int ret = 0;
|
||||
|
||||
if (!section || !buffer)
|
||||
{
|
||||
SetLastError(ERROR_INVALID_PARAMETER);
|
||||
return 0;
|
||||
}
|
||||
|
||||
TRACE("(%s, %p, %d, %s)\n", debugstr_w(section), buffer, len, debugstr_w(filename));
|
||||
|
||||
RtlEnterCriticalSection( &PROFILE_CritSect );
|
||||
|
@ -1346,9 +1352,14 @@ INT WINAPI GetPrivateProfileSectionA( LPCSTR section, LPSTR buffer,
|
|||
LPWSTR bufferW;
|
||||
INT retW, ret = 0;
|
||||
|
||||
bufferW = buffer ? HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR)) : NULL;
|
||||
if (section) RtlCreateUnicodeStringFromAsciiz(§ionW, section);
|
||||
else sectionW.Buffer = NULL;
|
||||
if (!section || !buffer)
|
||||
{
|
||||
SetLastError(ERROR_INVALID_PARAMETER);
|
||||
return 0;
|
||||
}
|
||||
|
||||
bufferW = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
|
||||
RtlCreateUnicodeStringFromAsciiz(§ionW, section);
|
||||
if (filename) RtlCreateUnicodeStringFromAsciiz(&filenameW, filename);
|
||||
else filenameW.Buffer = NULL;
|
||||
|
||||
|
|
Loading…
Reference in New Issue