projects
/
paraslash.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
crypt: Don't use plain integer as NULL pointer.
[paraslash.git]
/
crypt_common.c
diff --git
a/crypt_common.c
b/crypt_common.c
index
8fac0dc
..
8de346c
100644
(file)
--- a/
crypt_common.c
+++ b/
crypt_common.c
@@
-86,7
+86,7
@@
int base64_decode(char const *src, unsigned char *target, size_t targsize)
break;
pos = strchr(Base64, ch);
- if (pos ==
0
) /* A non-base64 character. */
+ if (pos ==
NULL
) /* A non-base64 character. */
return -E_BASE64;
switch (state) {