Module: wine Branch: master Commit: 08f3edccde763524e55e26a978da9a05d1219d64 URL: http://source.winehq.org/git/wine.git/?a=commit;h=08f3edccde763524e55e26a978...
Author: Bruno Jesus 00cpxxx@gmail.com Date: Thu Oct 30 23:20:35 2014 -0200
atl: Remove dead assignment.
---
dlls/atl/registrar.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/atl/registrar.c b/dlls/atl/registrar.c index 90c5b5b..32e207e 100644 --- a/dlls/atl/registrar.c +++ b/dlls/atl/registrar.c @@ -184,7 +184,7 @@ static HRESULT do_preprocess(const Registrar *This, LPCOLESTR data, strbuf *buf)
static HRESULT do_process_key(LPCOLESTR *pstr, HKEY parent_key, strbuf *buf, BOOL do_register) { - LPCOLESTR iter = *pstr; + LPCOLESTR iter; HRESULT hres; LONG lres; HKEY hkey = 0;