diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2005-04-19 03:04:03 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2005-04-19 03:04:03 +0800 |
commit | 4811c10fff061605fbb8b99a2b535250530eea9f (patch) | |
tree | 109c5536c172c36e067ca4727ca6f7ea7f58f302 | |
parent | b888a1bb82d3a57cf064c98e5ca548b759b31bea (diff) | |
download | gsoc2013-epiphany-4811c10fff061605fbb8b99a2b535250530eea9f.tar gsoc2013-epiphany-4811c10fff061605fbb8b99a2b535250530eea9f.tar.gz gsoc2013-epiphany-4811c10fff061605fbb8b99a2b535250530eea9f.tar.bz2 gsoc2013-epiphany-4811c10fff061605fbb8b99a2b535250530eea9f.tar.lz gsoc2013-epiphany-4811c10fff061605fbb8b99a2b535250530eea9f.tar.xz gsoc2013-epiphany-4811c10fff061605fbb8b99a2b535250530eea9f.tar.zst gsoc2013-epiphany-4811c10fff061605fbb8b99a2b535250530eea9f.zip |
Fix crash on 64bit architectures when downloading. Fixes bug #301093,
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.
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | embed/mozilla/mozilla-embed-persist.cpp | 2 |
2 files changed, 8 insertions, 1 deletions
@@ -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; |