1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-12-04 14:46:30 -05:00

compiler error on win32

svn path=/icecast/trunk/icecast/; revision=9734
This commit is contained in:
oddsock 2005-08-11 23:48:32 +00:00
parent d7f1285ba2
commit 5d642efd86

View File

@ -85,8 +85,10 @@ typedef struct {
static void auth_url_clear(auth_t *self) static void auth_url_clear(auth_t *self)
{ {
auth_url *url;
INFO0 ("Doing auth URL cleanup"); INFO0 ("Doing auth URL cleanup");
auth_url *url = self->state; url = self->state;
curl_easy_cleanup (url->handle); curl_easy_cleanup (url->handle);
free (url->username); free (url->username);
free (url->password); free (url->password);