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

memory leak fix..

svn path=/icecast/trunk/icecast/; revision=9732
This commit is contained in:
oddsock 2005-08-11 23:17:00 +00:00
parent 03c74becbe
commit 30ce5c5ba9

View File

@ -89,7 +89,7 @@ int get_clf_time (char *buffer, unsigned len, struct tm *t)
thetime = localtime(&now);
strftime (buffer, len-7, "%d/%b/%Y:%H:%M:%S", thetime);
strcat(buffer, timezone_string);
free(timezone_string);
return 1;
}
#endif