summaryrefslogtreecommitdiff
path: root/riscos/url_protocol.c
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/url_protocol.c
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/url_protocol.c')
-rw-r--r--riscos/url_protocol.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/riscos/url_protocol.c b/riscos/url_protocol.c
index 5db46d8f0..8b06d6f75 100644
--- a/riscos/url_protocol.c
+++ b/riscos/url_protocol.c
@@ -131,8 +131,11 @@ void ro_url_broadcast(const char *url)
os_error *error;
int len = strlen(url) + 1;
- if (236 < len)
- len = 236;
+ /* If URL is too long, then forget ANT and try URI, instead */
+ if (236 < len) {
+ ro_uri_launch(url);
+ return;
+ }
message.size = ((20+len+3) & ~3);
message.your_ref = 0;