summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMike Kaganski <mike.kaganski@collabora.com>2024-06-27 19:18:18 +0500
committerMike Kaganski <mike.kaganski@collabora.com>2024-06-27 20:44:24 +0200
commita337a6ed162826f95cf52b88241d45c2b392d751 (patch)
treecb7462523a5ae1f18575a9de56628cd03f905ebc /include
parent589bce37764d4e539a3c3ebf37fdd039be30bd51 (diff)
warning C6011: Dereferencing NULL pointer 'sNewPath'
C:\lo\build\instdir\sdk\include\LibreOfficeKit\LibreOfficeKitInit.h(161) : warning C6011: Dereferencing NULL pointer 'sNewPath'. : Lines: 136, 137, 138, 140, 143, 144, 157, 159, 160, 161 Change-Id: I0fba0db79b4a36f293e867da262a970eb152e3d5 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/169651 Tested-by: Jenkins Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
Diffstat (limited to 'include')
-rw-r--r--include/LibreOfficeKit/LibreOfficeKitInit.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/LibreOfficeKit/LibreOfficeKitInit.h b/include/LibreOfficeKit/LibreOfficeKitInit.h
index 10085d3c1c35..eafee08083a4 100644
--- a/include/LibreOfficeKit/LibreOfficeKitInit.h
+++ b/include/LibreOfficeKit/LibreOfficeKitInit.h
@@ -158,6 +158,7 @@ extern "C"
size_sEnvPath = strlen(sEnvPath);
buffer_size = size_sEnvPath + 2*strlen(pPath) + strlen(UNOPATH) + 4;
sNewPath = (char *) malloc(buffer_size);
+ assert(sNewPath);
sNewPath[0] = L'\0';
strcat_s(sNewPath, buffer_size, pPath); // program to PATH
strcat_s(sNewPath, buffer_size, ";");