diff options
author | June McEnroe <june@causal.agency> | 2020-08-15 14:45:33 +0000 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-08-15 14:46:22 +0000 |
commit | f34e7959b763bb841f1bc28421c2510c2c022119 (patch) | |
tree | 9c7b8449f3daa861962aa28b469ead29af1caee4 | |
parent | Publish "LibreTLS" (diff) | |
download | src-f34e7959b763bb841f1bc28421c2510c2c022119.tar.gz src-f34e7959b763bb841f1bc28421c2510c2c022119.zip |
Bump title buffer to 64K
YouTube now sends <title> that occurs 38K into the file...
-rw-r--r-- | bin/title.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/title.c b/bin/title.c index d6b53ce9..82f89d95 100644 --- a/bin/title.c +++ b/bin/title.c @@ -84,7 +84,7 @@ static void showTitle(const char *title) { static CURL *curl; static bool title; static struct { - char buf[8192]; + char buf[64 * 1024]; size_t len; } body; |