From 23afa3bb3e470adbb52d1f0d5b9583cc9e6e4085 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 24 Dec 2025 17:58:53 +0100 Subject: [PATCH] fixup remove outdated length restriction documentation --- docs/libcurl/curl_easy_escape.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/libcurl/curl_easy_escape.md b/docs/libcurl/curl_easy_escape.md index 1480a75c59..262bf131a8 100644 --- a/docs/libcurl/curl_easy_escape.md +++ b/docs/libcurl/curl_easy_escape.md @@ -34,8 +34,7 @@ A-Z, 0-9, '-', '.', '_' or '~' are converted to their "URL escaped" version constrained by its type, the returned string may not be altered. If *length* is set to 0 (zero), curl_easy_escape(3) uses strlen() on the input -*string* to find out the size. This function does not accept input strings -longer than **CURL_MAX_INPUT_LENGTH** (8 MB). +*string* to find out the size. You must curl_free(3) the returned string when you are done with it.