Module: wine Branch: master Commit: 7da2a20a1944c257248bdc2e48a8b0705a13e922 URL: http://source.winehq.org/git/wine.git/?a=commit;h=7da2a20a1944c257248bdc2e48...
Author: Gerald Pfeifer gerald@pfeifer.com Date: Sat Jul 5 14:15:17 2008 +0200
winecfg: Fix signedness of variable in enumerate_valuesW().
---
programs/winecfg/winecfg.c | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/programs/winecfg/winecfg.c b/programs/winecfg/winecfg.c index 3fdc796..f1439a7 100644 --- a/programs/winecfg/winecfg.c +++ b/programs/winecfg/winecfg.c @@ -481,9 +481,8 @@ void set_reg_key_dwordW(HKEY root, const WCHAR *path, const WCHAR *name, DWORD v WCHAR **enumerate_valuesW(HKEY root, WCHAR *path) { HKEY key; - DWORD res, i = 0; + DWORD res, i = 0, valueslen = 0; WCHAR **values = NULL; - int valueslen = 0; struct list *cursor;
res = RegOpenKeyW(root, path, &key);