diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2019-10-01 16:06:59 +0200 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2019-10-01 16:06:59 +0200 |
| commit | e0d4c81b3b289566d37f834b9809004c4b45dad7 (patch) | |
| tree | bb3f25d59646cb85cd64728e4c95d3c6df436da4 | |
| parent | 766a63a876f8bd0a630f8a2a1296c7df5985f524 (diff) | |
| download | curl-bagder/content-encoding-error.tar.gz | |
fixup lgtm warningbagder/content-encoding-error
| -rw-r--r-- | lib/http_chunks.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/http_chunks.c b/lib/http_chunks.c index d33c31214..b6ffa4185 100644 --- a/lib/http_chunks.c +++ b/lib/http_chunks.c @@ -348,7 +348,7 @@ const char *Curl_chunked_strerror(CHUNKcode code) return "Malformed encoding found"; case CHUNKE_PASSTHRU_ERROR: DEBUGASSERT(0); /* never used */ - break; + return ""; case CHUNKE_BAD_ENCODING: return "Bad content-encoding found"; case CHUNKE_OUT_OF_MEMORY: |
