From 69b4a6429e8a8e41bb6528b1daca52ec09442ced Mon Sep 17 00:00:00 2001 From: PaddleStroke Date: Thu, 3 Oct 2024 09:03:59 +0200 Subject: [PATCH] Chennes fix Co-authored-by: Chris Hennes --- src/App/GeoFeaturePyImp.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/App/GeoFeaturePyImp.cpp b/src/App/GeoFeaturePyImp.cpp index 9ee3a2d93e..1792f225b9 100644 --- a/src/App/GeoFeaturePyImp.cpp +++ b/src/App/GeoFeaturePyImp.cpp @@ -59,8 +59,8 @@ PyObject* GeoFeaturePy::getGlobalPlacement(PyObject * args) { PyObject* GeoFeaturePy::getGlobalPlacementOf(PyObject * args) { - PyObject* pyTargetObj; - PyObject* pyRootObj; + PyObject* pyTargetObj {nullptr}; + PyObject* pyRootObj {nullptr}; char* pname; if (!PyArg_ParseTuple(args, "OOs", &pyTargetObj, &pyRootObj, &pname)) {