Module: wine Branch: master Commit: dc9de59f7f1ead0b79ec24a05920ddab1ca97990 URL: http://source.winehq.org/git/wine.git/?a=commit;h=dc9de59f7f1ead0b79ec24a059...
Author: Austin English austinenglish@gmail.com Date: Fri Feb 7 16:42:49 2014 -0800
wbemprox: Add a missing break (Coverity).
---
dlls/wbemprox/query.c | 1 + 1 file changed, 1 insertion(+)
diff --git a/dlls/wbemprox/query.c b/dlls/wbemprox/query.c index bd68560..6933da2 100644 --- a/dlls/wbemprox/query.c +++ b/dlls/wbemprox/query.c @@ -170,6 +170,7 @@ static UINT resolve_type( UINT left, UINT right ) return CIM_UINT64; default: break; } + break;
case CIM_STRING: if (right == CIM_STRING) return CIM_STRING;