summaryrefslogtreecommitdiff
path: root/riscos/uri.h
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2009-07-01 12:05:51 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2009-07-01 12:05:51 +0000
commita3e205bbd9cff0a189b3a5a03c676ace9c5ee8dd (patch)
tree20110482ce47d736f634c0dd6b97d16a469a31c6 /riscos/uri.h
parent7e01924ecf99f79283f0eea7c385db8bab9d9a90 (diff)
downloadnetsurf-a3e205bbd9cff0a189b3a5a03c676ace9c5ee8dd.tar.gz
netsurf-a3e205bbd9cff0a189b3a5a03c676ace9c5ee8dd.tar.bz2
Constify ro_uri_launch()
If the URL is too long to fit into a non-indirected ANT URLLoad message, then skip the ANT URLLoad broadcast and jump straight to using URI_Dispatch. We don't support indirected ANT URLLoad messages as their potential for memory leakage is too great. svn path=/trunk/netsurf/; revision=8233
Diffstat (limited to 'riscos/uri.h')
-rw-r--r--riscos/uri.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/riscos/uri.h b/riscos/uri.h
index 8165b9c61..d538ea914 100644
--- a/riscos/uri.h
+++ b/riscos/uri.h
@@ -24,7 +24,7 @@
#include "oslib/wimp.h"
void ro_uri_message_received(wimp_message *message);
-bool ro_uri_launch(char *uri);
+bool ro_uri_launch(const char *uri);
void ro_uri_bounce(wimp_message *message);
#endif