From f125fcf14647e37fe01618734ddae7d0161185a9 Mon Sep 17 00:00:00 2001 From: Tom Poole Date: Tue, 19 Jan 2021 20:31:37 +0000 Subject: [PATCH] Projucer: Fixed a bug fetching JUCE API data --- .../Source/Application/UserAccount/jucer_LicenseQueryThread.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extras/Projucer/Source/Application/UserAccount/jucer_LicenseQueryThread.h b/extras/Projucer/Source/Application/UserAccount/jucer_LicenseQueryThread.h index 8b3eed647b..3d88291257 100644 --- a/extras/Projucer/Source/Application/UserAccount/jucer_LicenseQueryThread.h +++ b/extras/Projucer/Source/Application/UserAccount/jucer_LicenseQueryThread.h @@ -339,7 +339,7 @@ private: for (;;) { - char buffer [8192]; + char buffer [8192] = ""; auto num = urlStream->read (buffer, sizeof (buffer)); if (ThreadPoolJob::getCurrentThreadPoolJob()->shouldExit())