sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.hxx | 1 + 1 file changed, 1 insertion(+)
New commits: commit 2d68362dac381247081f8a750f3b6d83d9b69ac2 Author: Mike Kaganski <[email protected]> AuthorDate: Sat Jan 10 13:20:06 2026 +0500 Commit: Mike Kaganski <[email protected]> CommitDate: Sat Jan 10 15:02:10 2026 +0100 enable-msvc-analyze: C6011: Dereferencing NULL pointer C:\louild\workdir\UnpackedTarball\poppler\poppler\Object.h(258) : warning C6011: Dereferencing NULL pointer 'cString'. See line 257 for an earlier location where this can occur.: Lines: 254, 255, 256, 257, 258 See https://gitlab.freedesktop.org/poppler/poppler/-/issues/1658. Change-Id: Id6778ad6f2d04dfbc2a1ef753bd0b6bda55ababc Reviewed-on: https://gerrit.libreoffice.org/c/core/+/196953 Tested-by: Jenkins Reviewed-by: Mike Kaganski <[email protected]> diff --git a/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.hxx b/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.hxx index d6e2b4d50a27..b7bd912406b5 100644 --- a/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.hxx +++ b/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.hxx @@ -31,6 +31,7 @@ #pragma warning(push) #pragma warning(disable : 4100) // unreferenced formal parameter #pragma warning(disable : 4310) // cast truncates constant value +#pragma warning(disable : 6011) // dereferencing NULL pointer #endif #include <GfxState.h>
