-
-
Notifications
You must be signed in to change notification settings - Fork 14.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #139669 from risicle/ris-curl-CVE-2021-22945
curl: add patch for CVE-2021-22945
- Loading branch information
Showing
2 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
From 43157490a5054bd24256fe12876931e8abc9df49 Mon Sep 17 00:00:00 2001 | ||
From: z2_ on hackerone <> | ||
Date: Tue, 24 Aug 2021 09:50:33 +0200 | ||
Subject: [PATCH] mqtt: clear the leftovers pointer when sending succeeds | ||
|
||
CVE-2021-22945 | ||
|
||
Bug: https://curl.se/docs/CVE-2021-22945.html | ||
--- | ||
lib/mqtt.c | 4 ++++ | ||
1 file changed, 4 insertions(+) | ||
|
||
diff --git a/lib/mqtt.c b/lib/mqtt.c | ||
index f077e6c3dc44..fcd40b41e600 100644 | ||
--- a/lib/mqtt.c | ||
+++ b/lib/mqtt.c | ||
@@ -128,6 +128,10 @@ static CURLcode mqtt_send(struct Curl_easy *data, | ||
mq->sendleftovers = sendleftovers; | ||
mq->nsend = nsend; | ||
} | ||
+ else { | ||
+ mq->sendleftovers = NULL; | ||
+ mq->nsend = 0; | ||
+ } | ||
return result; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters