We have compilation problem when we want to use your lib in our project. Due to -Wall and -Werror flags, our compiler doesn't want uninitialized pointer but in element.c, we find a doc variable (WJElement doc) that is not really initialized (into __WJEFromString() ).
To correct that, I simply added a "= NULL" on the declaration line of this variable.
Could you, please, consider this is good and accept the PR ?
Hello,
We have compilation problem when we want to use your lib in our project. Due to -Wall and -Werror flags, our compiler doesn't want uninitialized pointer but in element.c, we find a doc variable (WJElement doc) that is not really initialized (into __WJEFromString() ). To correct that, I simply added a "= NULL" on the declaration line of this variable.
Could you, please, consider this is good and accept the PR ?
Thanks a lot. Joël.