diff options
author | Vicent Marti <tanoku@gmail.com> | 2014-09-04 20:04:21 +0200 |
---|---|---|
committer | Vicent Marti <tanoku@gmail.com> | 2014-09-09 03:39:16 +0200 |
commit | 278b89d092cae8fe9cdd6346c69512886d36abbd (patch) | |
tree | e11945a256d14e8668fc3efdf14936d60cc13900 | |
parent | d260c800c90e024714a6d84e28ac2caea70866e7 (diff) |
Silly me
-rw-r--r-- | src/inlines.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inlines.c b/src/inlines.c index 5e0f3e5..6b17027 100644 --- a/src/inlines.c +++ b/src/inlines.c @@ -112,7 +112,7 @@ static unsigned char *bufdup(const unsigned char *buf) { unsigned char *new = NULL; - if (!buf) { + if (buf) { int len = strlen((char *)buf); new = malloc(len + 1); memcpy(new, buf, len + 1); |