File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -195,7 +195,7 @@ static PyObject* PyXmlSec_EncryptionContextEncryptBinary(PyObject* self, PyObjec
195
195
196
196
// release the replaced nodes in a way safe for `lxml`
197
197
static void PyXmlSec_ClearReplacedNodes (xmlSecEncCtxPtr ctx , PyXmlSec_LxmlDocumentPtr doc ) {
198
- PyXmlSec_LxmlElementPtr * elem ;
198
+ PyXmlSec_LxmlElementPtr elem ;
199
199
// release the replaced nodes in a way safe for `lxml`
200
200
xmlNodePtr n = ctx -> replacedNodeList ;
201
201
xmlNodePtr nn ;
@@ -204,7 +204,7 @@ static void PyXmlSec_ClearReplacedNodes(xmlSecEncCtxPtr ctx, PyXmlSec_LxmlDocume
204
204
PYXMLSEC_DEBUGF ("clear replaced node %p" , n );
205
205
nn = n -> next ;
206
206
// if n has references, it will not be deleted
207
- elem = (PyXmlSec_LxmlElementPtr * )PyXmlSec_elementFactory (doc , n );
207
+ elem = (PyXmlSec_LxmlElementPtr )PyXmlSec_elementFactory (doc , n );
208
208
if (NULL == elem )
209
209
xmlFreeNode (n );
210
210
else
You can’t perform that action at this time.
0 commit comments