-
-
Notifications
You must be signed in to change notification settings - Fork 14.5k
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 #31002 from yegortimoshenko/bchunk/CVE-2017-15953
bchunk: fix recent CVEs, simplify installPhase
- Loading branch information
Showing
3 changed files
with
66 additions
and
12 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,25 @@ | ||
--- a/bchunk.c 2017-10-30 18:03:58.658741629 +0000 | ||
+++ b/bchunk.c 2017-10-30 19:40:25.558131619 +0000 | ||
@@ -18,6 +18,7 @@ | ||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
*/ | ||
|
||
+#define _GNU_SOURCE | ||
#include <stdio.h> | ||
#include <stdlib.h> | ||
#include <string.h> | ||
@@ -271,11 +272,10 @@ | ||
int16_t i; | ||
float fl; | ||
|
||
- if (!(fname = malloc(strlen(bname) + 8))) { | ||
- fprintf(stderr, "main(): malloc() failed, out of memory\n"); | ||
+ if (asprintf(&fname, "%s%2.2d.%s", bname, track->num, track->extension) == -1) { | ||
+ fprintf(stderr, "writetrack(): asprintf() failed, out of memory\n"); | ||
exit(4); | ||
} | ||
- sprintf(fname, "%s%2.2d.%s", bname, track->num, track->extension); | ||
|
||
printf("%2d: %s ", track->num, fname); | ||
|
||
|
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,33 @@ | ||
diff -urNZ bchunk-1.2.0.orig/bchunk.c bchunk-1.2.0/bchunk.c | ||
--- a/bchunk.c 2017-10-30 18:03:58.658741629 +0000 | ||
+++ b/bchunk.c 2017-10-30 19:17:36.732855884 +0000 | ||
@@ -426,11 +426,11 @@ | ||
printf("\nTrack "); | ||
if (!(p = strchr(p, ' '))) { | ||
fprintf(stderr, "... ouch, no space after TRACK.\n"); | ||
- continue; | ||
+ exit(3); | ||
} | ||
p++; | ||
if (!(t = strchr(p, ' '))) { | ||
fprintf(stderr, "... ouch, no space after track number.\n"); | ||
- continue; | ||
+ exit(3); | ||
} | ||
*t = '\0'; | ||
|
||
@@ -460,12 +460,12 @@ | ||
} else if ((p = strstr(s, "INDEX"))) { | ||
if (!(p = strchr(p, ' '))) { | ||
printf("... ouch, no space after INDEX.\n"); | ||
- continue; | ||
+ exit(3); | ||
} | ||
p++; | ||
if (!(t = strchr(p, ' '))) { | ||
printf("... ouch, no space after index number.\n"); | ||
- continue; | ||
+ exit(3); | ||
} | ||
*t = '\0'; | ||
t++; |
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