summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/bn.c2
-rw-r--r--src/templates.c2
-rw-r--r--src/xmldsig.c1
3 files changed, 3 insertions, 2 deletions
diff --git a/src/bn.c b/src/bn.c
index b5333c9c..48fb990a 100644
--- a/src/bn.c
+++ b/src/bn.c
@@ -252,7 +252,7 @@ xmlSecBnFromString(xmlSecBnPtr bn, const xmlChar* str, xmlSecSize base) {
continue;
}
- xmlSecAssert2(ch <= sizeof(xmlSecBnLookupTable), -1);
+ xmlSecAssert2(ch < sizeof(xmlSecBnLookupTable) / sizeof(xmlSecBnLookupTable[0]), -1);
nn = xmlSecBnLookupTable[ch];
if((nn < 0) || ((xmlSecSize)nn > base)) {
xmlSecError(XMLSEC_ERRORS_HERE,
diff --git a/src/templates.c b/src/templates.c
index 8764da40..88bed3dd 100644
--- a/src/templates.c
+++ b/src/templates.c
@@ -2065,7 +2065,7 @@ xmlSecTmplNodeWriteNsList(xmlNodePtr parentNode, const xmlChar** nsList) {
} else {
prefix = (*ptr);
}
- if((++ptr) == NULL) {
+ if(*(++ptr) == NULL) {
xmlSecError(XMLSEC_ERRORS_HERE,
NULL,
NULL,
diff --git a/src/xmldsig.c b/src/xmldsig.c
index 7d8760b7..61e35074 100644
--- a/src/xmldsig.c
+++ b/src/xmldsig.c
@@ -2333,6 +2333,7 @@ xmlSecDSigReferenceCtxProcessNodeEx(xmlSecDSigReferenceCtxPtr dsigRefCtx, xmlNod
/* read attributes first */
dsigRefCtx->uri = xmlGetProp(node, xmlSecAttrURI);
+ xmlSecAssert2(dsigRefCtx->uri != NULL, -1);
while(pNextTmp[i] != NULL) {
len = strlen(pNextTmp[i]);