aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--embed/mozilla/mozilla-embed-persist.cpp2
2 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index c5fc7ca04..3653404c3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
2005-04-18 Christian Persch <chpe@cvs.gnome.org>
+ * embed/mozilla/mozilla-embed-persist.cpp:
+
+ Fix crash on 64bit architectures when downloading.
+ Fixes bug #301093, patch by Sjoerd Simons.
+
+2005-04-18 Christian Persch <chpe@cvs.gnome.org>
+
* src/ephy-window.c: (setup_ui_manager):
Constify the action entries. Fixes bug #301065, patch by
diff --git a/embed/mozilla/mozilla-embed-persist.cpp b/embed/mozilla/mozilla-embed-persist.cpp
index 96b6a37ba..404a0debf 100644
--- a/embed/mozilla/mozilla-embed-persist.cpp
+++ b/embed/mozilla/mozilla-embed-persist.cpp
@@ -136,7 +136,7 @@ impl_save (EphyEmbedPersist *persist)
nsresult rv;
char *filename;
char *uri;
- long max_size;
+ gint64 max_size;
EphyEmbed *embed;
EphyEmbedPersistFlags flags;
EphyEmbedSingle *single;