aboutsummaryrefslogtreecommitdiff
path: root/src/examples/http_chunked_compression.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/examples/http_chunked_compression.c')
-rw-r--r--src/examples/http_chunked_compression.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/examples/http_chunked_compression.c b/src/examples/http_chunked_compression.c
index 7f4a1333..7ccd535e 100644
--- a/src/examples/http_chunked_compression.c
+++ b/src/examples/http_chunked_compression.c
@@ -108,7 +108,7 @@ read_cb (void *cls, uint64_t pos, char *mem, size_t size)
108 { 108 {
109 memcpy (mem, buf, size); 109 memcpy (mem, buf, size);
110 } 110 }
111 free (buf); // buf may be set even on error return 111 free (buf); /* Buf may be set even on error return. */
112done: 112done:
113 free (src); 113 free (src);
114 return size; 114 return size;