summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Blaesius <skate4life@gmx.de>2016-08-10 04:03:41 -0700
committerAndreas Blaesius <skate4life@gmx.de>2016-08-10 04:03:48 -0700
commit6e50dc96093ac71c1856da8546d6bf04681ce820 (patch)
tree0f986c34ac8379017088261747c7c85d929c8289
parent9fd81816df49facd61de517f8be206f548324122 (diff)
downloadandroid_external_flac-6e50dc96093ac71c1856da8546d6bf04681ce820.tar.gz
android_external_flac-6e50dc96093ac71c1856da8546d6bf04681ce820.tar.bz2
android_external_flac-6e50dc96093ac71c1856da8546d6bf04681ce820.zip
Remove by accident added patchfile
Change-Id: Icd6ff020966b1028578c17b82bdda7ed47058420
-rw-r--r--0001-Avoid-free-before-initialize-vulnerability-.bulletin.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/0001-Avoid-free-before-initialize-vulnerability-.bulletin.patch b/0001-Avoid-free-before-initialize-vulnerability-.bulletin.patch
deleted file mode 100644
index 158dfc8..0000000
--- a/0001-Avoid-free-before-initialize-vulnerability-.bulletin.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-From dbf41bec9b180047d1d0350317842531348f431a Mon Sep 17 00:00:00 2001
-From: Robert Shih <robertshih@google.com>
-Date: Fri, 11 Mar 2016 18:33:51 -0800
-Subject: [PATCH] Avoid free-before-initialize vulnerability in heap
-
-Bug: 27211885
-Change-Id: Ib9c93bd9ffdde2a5f8d31a86f06e267dc9c152db
-(cherry picked from commit 6995c8473ccfc43848e179a060de8157d7d897c5)
----
- libFLAC/stream_decoder.c | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/libFLAC/stream_decoder.c b/libFLAC/stream_decoder.c
-index d13b23b..7dff737 100644
---- a/libFLAC/stream_decoder.c
-+++ b/libFLAC/stream_decoder.c
-@@ -1739,6 +1739,7 @@ FLAC__bool read_metadata_vorbiscomment_(FLAC__StreamDecoder *decoder, FLAC__Stre
- if (obj->num_comments > 0) {
- if (0 == (obj->comments = safe_malloc_mul_2op_p(obj->num_comments, /*times*/sizeof(FLAC__StreamMetadata_VorbisComment_Entry)))) {
- decoder->protected_->state = FLAC__STREAM_DECODER_MEMORY_ALLOCATION_ERROR;
-+ obj->num_comments = 0;
- return false;
- }
- for (i = 0; i < obj->num_comments; i++) {
---
-2.8.0.rc3.226.g39d4020
-