summaryrefslogtreecommitdiff
path: root/lib/easy.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2023-02-08 14:24:49 +0100
committerDaniel Stenberg <daniel@haxx.se>2023-02-10 08:28:58 +0100
commit2e2e3d16c5c77596a789f6e6a1b30be7fc17360c (patch)
treeee4d94b897e1b3381c61df7fad4c0d6a334dac98 /lib/easy.c
parent2aed8e179f0675f5b17d75f3904ea7d905f4336a (diff)
downloadcurl-2e2e3d16c5c77596a789f6e6a1b30be7fc17360c.tar.gz
ws: fix recv of larger frames
+ remove 'oleft' from the struct + deal with "overflow data" in a separate dynbuf Reported-by: Mike Duglas Fixes #10438 Closes #10447
Diffstat (limited to 'lib/easy.c')
-rw-r--r--lib/easy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/easy.c b/lib/easy.c
index 2cd1ada4e..db03026c9 100644
--- a/lib/easy.c
+++ b/lib/easy.c
@@ -1228,7 +1228,7 @@ CURLcode curl_easy_recv(struct Curl_easy *data, void *buffer, size_t buflen,
return result;
*n = (size_t)n1;
-
+ infof(data, "reached %s:%d", __FILE__, __LINE__);
return CURLE_OK;
}