From ca4fdc57ed6db9c3c56531c81b00f438dc782c38 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Fr=C3=A9d=C3=A9ric=20Delanoy?= Date: Sun, 29 Jan 2012 23:25:40 +0100 Subject: [PATCH] msi: Avoid dead code in parse_prop (Coverity). --- dlls/msi/action.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/dlls/msi/action.c b/dlls/msi/action.c index 665ca63c43e..663a9170ad4 100644 --- a/dlls/msi/action.c +++ b/dlls/msi/action.c @@ -233,8 +233,7 @@ static int parse_prop( const WCHAR *str, WCHAR *value, int *quotes ) break; default: state = state_token; - if (!count) in_quotes = 0; - else in_quotes = 1; + in_quotes = 1; len++; break; } -- 2.11.4.GIT