diff options
Diffstat (limited to 'src/couchdb/curlhelper.c')
-rw-r--r-- | src/couchdb/curlhelper.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/couchdb/curlhelper.c b/src/couchdb/curlhelper.c index 99b2e6ab..116612cd 100644 --- a/src/couchdb/curlhelper.c +++ b/src/couchdb/curlhelper.c @@ -38,7 +38,7 @@ Buffer init_Buffer() { } void free_Buffer(Buffer b) { - if(b == NULL) + if(b == NULL) return; if(b->data != NULL) free(b->data); @@ -186,7 +186,7 @@ int set_List(List l, int pos, void* ptr) { } *(l->elements + pos) = ptr; - + return TRUE; } |