Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- From c56504f077b098fcd6ae8eac592ecea9a289950d Mon Sep 17 00:00:00 2001
- From: Jacek Jendrzej <satbaby@kawaii.com>
- Date: Fri, 11 Aug 2017 16:41:04 +0200
- Subject: [PATCH] fix if filter not found segfault
- ---
- hd1/fileparser.cpp | 2 ++
- hd2/fileparser.cpp | 2 ++
- 2 files changed, 4 insertions(+)
- diff --git a/hd1/fileparser.cpp b/hd1/fileparser.cpp
- index 0424794..f553b56 100644
- --- a/hd1/fileparser.cpp
- +++ b/hd1/fileparser.cpp
- @@ -2686,6 +2686,8 @@ bool cFileParser::ClaimVideoResources(void)
- bsfc = NULL;
- return false;
- }
- + }else{
- + return false;
- }
- #endif
- diff --git a/hd2/fileparser.cpp b/hd2/fileparser.cpp
- index 0424794..f553b56 100644
- --- a/hd2/fileparser.cpp
- +++ b/hd2/fileparser.cpp
- @@ -2686,6 +2686,8 @@ bool cFileParser::ClaimVideoResources(void)
- bsfc = NULL;
- return false;
- }
- + }else{
- + return false;
- }
- #endif
- --
- 2.7.4.1.g5468f9e
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement