=?UTF-8?Q?Fr=C3=A9d=C3=A9ric=20Delanoy=20?=: mscoree: Constify a character string.

Alexandre Julliard julliard at winehq.org
Tue Dec 17 14:05:00 CST 2013


Module: wine
Branch: master
Commit: 3c6a4fe554f1b7f70b55cf97718a03f52710644f
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=3c6a4fe554f1b7f70b55cf97718a03f52710644f

Author: Frédéric Delanoy <frederic.delanoy at gmail.com>
Date:   Mon Dec 16 23:26:11 2013 +0100

mscoree: Constify a character string.

---

 dlls/mscoree/metahost.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/mscoree/metahost.c b/dlls/mscoree/metahost.c
index 3a7e109..6386122 100644
--- a/dlls/mscoree/metahost.c
+++ b/dlls/mscoree/metahost.c
@@ -1260,7 +1260,7 @@ HRESULT get_file_from_strongname(WCHAR* stringnameW, WCHAR* assemblies_path, int
     HRESULT hr=S_OK;
     IAssemblyCache *asmcache;
     ASSEMBLY_INFO info;
-    static WCHAR fusiondll[] = {'f','u','s','i','o','n',0};
+    static const WCHAR fusiondll[] = {'f','u','s','i','o','n',0};
     HMODULE hfusion=NULL;
     static HRESULT (WINAPI *pCreateAssemblyCache)(IAssemblyCache**,DWORD);
 




More information about the wine-cvs mailing list