diff options
-rw-r--r-- | libhb/common.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/libhb/common.c b/libhb/common.c index 7bc9438ec..0b23fda60 100644 --- a/libhb/common.c +++ b/libhb/common.c @@ -5462,11 +5462,6 @@ static char *strndup_quote(const char *str, char q, int len) { if (str[src] == q) src++; - else if (str[src] == '\\' && str[src+1] != 0) - { - res[dst++] = str[src+1]; - src += 2; - } else res[dst++] = str[src++]; } |