aboutsummaryrefslogtreecommitdiffstats
path: root/my-evolution
diff options
context:
space:
mode:
authorIain Holmes <iain@src.gnome.org>2001-11-07 19:37:28 +0800
committerIain Holmes <iain@src.gnome.org>2001-11-07 19:37:28 +0800
commit53d4e603f32c5c1f936aa79e84fda923fb638dd7 (patch)
tree41e3268699896163fa648866ee17bc9ce4c484ee /my-evolution
parent14f59bab593890f50e84c5d57fded235091fa480 (diff)
downloadgsoc2013-evolution-53d4e603f32c5c1f936aa79e84fda923fb638dd7.tar
gsoc2013-evolution-53d4e603f32c5c1f936aa79e84fda923fb638dd7.tar.gz
gsoc2013-evolution-53d4e603f32c5c1f936aa79e84fda923fb638dd7.tar.bz2
gsoc2013-evolution-53d4e603f32c5c1f936aa79e84fda923fb638dd7.tar.lz
gsoc2013-evolution-53d4e603f32c5c1f936aa79e84fda923fb638dd7.tar.xz
gsoc2013-evolution-53d4e603f32c5c1f936aa79e84fda923fb638dd7.tar.zst
gsoc2013-evolution-53d4e603f32c5c1f936aa79e84fda923fb638dd7.zip
Silly random city bug
svn path=/trunk/; revision=14613
Diffstat (limited to 'my-evolution')
-rw-r--r--my-evolution/ChangeLog5
-rw-r--r--my-evolution/e-summary-preferences.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/my-evolution/ChangeLog b/my-evolution/ChangeLog
index c442ef1cf3..722a32733e 100644
--- a/my-evolution/ChangeLog
+++ b/my-evolution/ChangeLog
@@ -1,3 +1,8 @@
+2001-11-06 Iain Holmes <iain@ximian.com>
+
+ * e-summary-preferences.c (make_initial_weather_list): Don't free the
+ vector. Doh!
+
2001-10-31 Iain Holmes <iain@ximian.com>
* Locations: Removed Frobisher.
diff --git a/my-evolution/e-summary-preferences.c b/my-evolution/e-summary-preferences.c
index 3b3192e0ca..3eb53edec3 100644
--- a/my-evolution/e-summary-preferences.c
+++ b/my-evolution/e-summary-preferences.c
@@ -85,7 +85,7 @@ make_initial_weather_list (ESummaryPrefs *prefs)
for (p = stations_v; *p != NULL; p++) {
stations = g_list_prepend (stations, *p);
}
- g_strfreev (stations_v);
+ g_free (stations_v);
prefs->stations = g_list_reverse (stations);
}
@@ -461,7 +461,7 @@ static struct _RDFInfo rdfs[] = {
{"http://www.fool.com/about/headlines/rss_headlines.asp", "The Motley Fool"},
{"http://www.newsforge.com/newsforge.rss", "Newsforge"},
{"http://www.nanotechnews.com/nano/rdf", "Nanotech News"},
- {"http://www.perl.com/pace/news.rss", "Perl.com"},
+ {"http://www.perl.com/pace/news.rss", "Perl.com"},
{"http://www.pigdog.org/pigdog.rdf", "Pigdog"},
{"http://www.python.org/channews.rdf", "Python.org"},
{"http://www.quotationspage.com/data/mqotd.rss", N_("Quotes of the Day")},