diff options
Diffstat (limited to 'src')
| -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);  | 
