Comment 5 for bug 788437

Revision history for this message
Tsu Jan (tsujan2000) wrote :

Isn't the crash because cURL is freed before it's used in cd_warning()? I mean the following lines in function cd_weather_get_distant_data() in weather/src/applet-read-data.c:

cForecastData = cairo_dock_get_url_data (cURL, &erreur)
g_free (cURL);
if (erreur != NULL)
{
cd_warning ("while downloading forecast data:\n%s -> %s", cURL, erreur->message);
...
...
cForecastData = cairo_dock_get_url_data (cURL, &erreur);
g_free (cURL);
if (erreur != NULL)
{
cd_warning ("while downloading forecast data:\n%s -> %s", cURL, erreur->message);