From 4ecfb269c13c48cb46f2ebfe549b15c9cf9e15f1 Mon Sep 17 00:00:00 2001 From: Daniel Rubery Date: Tue, 2 Jul 2024 05:27:40 -0700 Subject: [PATCH] Update unrar OSS-fuzz integration (#12144) Unrar is fuzzed through a mirror of the official source code on GitHub (https://github.com/aawc/unrar). We have not been updating the oss_fuzz branch, which leads to obsolete bugs like https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=69968. Since the main purpose of this repo is to enable fuzzing, we're going to remove the oss_fuzz branch and update the integration here. Co-authored-by: Daniel Rubery --- projects/unrar/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/unrar/Dockerfile b/projects/unrar/Dockerfile index 8ff4b95f0..e48d665f6 100644 --- a/projects/unrar/Dockerfile +++ b/projects/unrar/Dockerfile @@ -17,7 +17,7 @@ FROM gcr.io/oss-fuzz-base/base-builder RUN apt-get update && apt-get install -y make build-essential -RUN git clone -b oss_fuzz --depth 1 https://github.com/aawc/unrar.git +RUN git clone -b main --depth 1 https://github.com/aawc/unrar.git WORKDIR unrar COPY build.sh $SRC/