summary refs log tree commit diff
path: root/bin/title.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-08-15 14:45:33 +0000
committerJune McEnroe <june@causal.agency>2020-08-15 14:46:22 +0000
commit6935852850132aec82f473d5c8d05c521686dc01 (patch)
treea95a490d67ce8d35013483cda6e98208b4683122 /bin/title.c
parentPublish "LibreTLS" (diff)
downloadsrc-6935852850132aec82f473d5c8d05c521686dc01.tar.gz
src-6935852850132aec82f473d5c8d05c521686dc01.zip
Bump title buffer to 64K
YouTube now sends <title> that occurs 38K into the file...
Diffstat (limited to 'bin/title.c')
-rw-r--r--bin/title.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/title.c b/bin/title.c
index be96a423..47ff720a 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;