Francois Gouget : urlmon: Fix the spelling of the destroy_uri_obj() function.

Alexandre Julliard julliard at winehq.org
Mon May 14 14:26:04 CDT 2012


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

Author: Francois Gouget <fgouget at free.fr>
Date:   Mon May 14 01:05:38 2012 +0200

urlmon: Fix the spelling of the destroy_uri_obj() function.

---

 dlls/urlmon/uri.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/urlmon/uri.c b/dlls/urlmon/uri.c
index 3d6bf8b..20e0582 100644
--- a/dlls/urlmon/uri.c
+++ b/dlls/urlmon/uri.c
@@ -4196,7 +4196,7 @@ static inline Uri* impl_from_IUri(IUri *iface)
     return CONTAINING_RECORD(iface, Uri, IUri_iface);
 }
 
-static inline void destory_uri_obj(Uri *This)
+static inline void destroy_uri_obj(Uri *This)
 {
     SysFreeString(This->raw_uri);
     heap_free(This->canon_uri);
@@ -4254,7 +4254,7 @@ static ULONG WINAPI Uri_Release(IUri *iface)
     TRACE("(%p) ref=%d\n", This, ref);
 
     if(!ref)
-        destory_uri_obj(This);
+        destroy_uri_obj(This);
 
     return ref;
 }




More information about the wine-cvs mailing list