Projet

Général

Profil

0002-Fix-use-of-wrong-enumeration-NULL-value-71313.patch

Benjamin Dauvergne, 17 novembre 2022 18:53

Télécharger (867 octets)

Voir les différences:

Subject: [PATCH 2/6] Fix use of wrong enumeration NULL value (#71313)

It produced a cast warning.
 lasso/xml/private.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
lasso/xml/private.h
120 120
	xmlSecKey *signature_key;
121 121
} LassoSignatureContext;
122 122

  
123
#define LASSO_SIGNATURE_CONTEXT_NONE ((LassoSignatureContext){LASSO_SIGNATURE_TYPE_NONE, NULL})
123
#define LASSO_SIGNATURE_CONTEXT_NONE ((LassoSignatureContext){LASSO_SIGNATURE_METHOD_NONE, NULL})
124 124

  
125 125
#define lasso_assign_signature_context(to, from) \
126 126
	do { \
127
-