fusion: Avoid hardcoding the Unicode string literal lengths.

Francois Gouget fgouget at free.fr
Fri Dec 16 06:08:38 CST 2011


---
 dlls/fusion/fusionpriv.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/fusion/fusionpriv.h b/dlls/fusion/fusionpriv.h
index aecb026..8d51f5d 100644
--- a/dlls/fusion/fusionpriv.h
+++ b/dlls/fusion/fusionpriv.h
@@ -461,7 +461,7 @@ static inline void token_to_str(BYTE *bytes, LPWSTR str)
 {
     DWORD i;
 
-    static const WCHAR hexval[16] = {
+    static const WCHAR hexval[] = {
         '0','1','2','3','4','5','6','7','8','9','a','b','c','d','e','f'
     };
 
-- 
1.7.7.3




More information about the wine-patches mailing list