aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-10-27 10:10:24 +0100
committerMax Kellermann <max@duempel.org>2008-10-27 10:10:24 +0100
commit0d30d51f07f1c55caf974c671fa702307c163878 (patch)
tree3d3c5cbb0a0ac122ce8308966cd093029a4b61cc /src
parent355108666c89bf2a637610b0f7a81974d1f312e4 (diff)
downloadmpd-0d30d51f07f1c55caf974c671fa702307c163878.tar.gz
mpd-0d30d51f07f1c55caf974c671fa702307c163878.tar.xz
mpd-0d30d51f07f1c55caf974c671fa702307c163878.zip
input_file, input_curl: check URL type before attempting to open
Don't attempt to open a HTTP URL as a local file, and don't send a local path to libcurl.
Diffstat (limited to 'src')
-rw-r--r--src/input_curl.c3
-rw-r--r--src/input_file.c3
2 files changed, 6 insertions, 0 deletions
diff --git a/src/input_curl.c b/src/input_curl.c
index ad471795e..9ac529a63 100644
--- a/src/input_curl.c
+++ b/src/input_curl.c
@@ -473,6 +473,9 @@ input_curl_open(struct input_stream *is, const char *url)
struct input_curl *c;
bool ret;
+ if (strncmp(url, "http://", 7) != 0)
+ return false;
+
c = g_new0(struct input_curl, 1);
c->url = g_strdup(url);
INIT_LIST_HEAD(&c->buffers);
diff --git a/src/input_file.c b/src/input_file.c
index eece19c53..8ffe11395 100644
--- a/src/input_file.c
+++ b/src/input_file.c
@@ -26,6 +26,9 @@ input_file_open(struct input_stream *is, const char *filename)
{
FILE *fp;
+ if (filename[0] != '/')
+ return false;
+
fp = fopen(filename, "r");
if (!fp) {
is->error = errno;