[xiph-commits] r9734 - icecast/trunk/icecast/src

oddsock at svn.xiph.org oddsock at svn.xiph.org
Thu Aug 11 16:48:33 PDT 2005


Author: oddsock
Date: 2005-08-11 16:48:32 -0700 (Thu, 11 Aug 2005)
New Revision: 9734

Modified:
   icecast/trunk/icecast/src/auth_url.c
Log:
compiler error on win32

Modified: icecast/trunk/icecast/src/auth_url.c
===================================================================
--- icecast/trunk/icecast/src/auth_url.c	2005-08-11 23:29:58 UTC (rev 9733)
+++ icecast/trunk/icecast/src/auth_url.c	2005-08-11 23:48:32 UTC (rev 9734)
@@ -84,9 +84,11 @@
 
 
 static void auth_url_clear(auth_t *self)
-{
+{
+    auth_url *url;
+
     INFO0 ("Doing auth URL cleanup");
-    auth_url *url = self->state;
+    url = self->state;
     curl_easy_cleanup (url->handle);
     free (url->username);
     free (url->password);



More information about the commits mailing list