url: Patched to compile on C89 compilers.

--HG--
extra : rebase_source : 6402a07ba90504e6e62097ef3d32579f7244ada7
diff --git a/src/misc/windows/SDL_sysurl.c b/src/misc/windows/SDL_sysurl.c
index a6bdc07..ad77b77 100644
--- a/src/misc/windows/SDL_sysurl.c
+++ b/src/misc/windows/SDL_sysurl.c
@@ -29,15 +29,16 @@
 int
 SDL_SYS_OpenURL(const char *url)
 {
+    WCHAR* wurl;
+    int rc;
+
     /* MSDN says for safety's sake, make sure COM is initialized. */
     const HRESULT hr = WIN_CoInitialize();
     if (FAILED(hr)) {
         return WIN_SetErrorFromHRESULT("CoInitialize failed", hr);
     }
 
-    WCHAR* wurl = WIN_UTF8ToString(url);
-    int rc;
-
+    wurl = WIN_UTF8ToString(url);
     if (wurl == NULL) {
         WIN_CoUninitialize();
         return SDL_OutOfMemory();