search for: temp_dead

Displaying 2 results from an estimated 2 matches for "temp_dead".

2005 May 25
1
[PATCH] Fix wrong use of g_strconcat
...xmms/http.c-dist 2005-05-25 16:14:03.000000000 +0200 +++ src/plugin_xmms/http.c 2005-05-25 16:17:30.000000000 +0200 @@ -484,7 +484,7 @@ static int http_connect (gchar *url_, gb flac_cfg.stream.use_udp_channel ? udpspace : ""); if (offset && !head) { gchar *temp_dead = temp; - temp = g_strconcat ("%sRange: %ll-\r\n", temp, offset); + temp = g_strdup_printf("%sRange: %llu-\r\n", temp, offset); fprintf (stderr, "%s", temp); g_free (temp_dead); }
2004 Sep 10
0
http streaming in the xmms plugin
...proxy_auth ? proxy_auth : "", auth ? auth : "", + flac_cfg.stream.cast_title_streaming ? "Icy-MetaData:1\r\n" : "", + flac_cfg.stream.use_udp_channel ? udpspace : ""); + if (offset && !head) { + gchar *temp_dead = temp; + temp = g_strconcat ("%sRange: %ll-\r\n", temp, offset); + fprintf (stderr, "%s", temp); + g_free (temp_dead); + } + + g_free(file); + if(proxy_auth) + g_free(proxy_auth); + if(auth) + g_free(auth); + write(sock, temp, s...