From: Matthew Exon Date: Sun, 29 Sep 2019 20:22:52 +0000 (+0200) Subject: [mailstream] Check for malformed image URLs and do not attempt to attach them X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=801b88a9820a9999a6db91a26656ff757a9e0406;p=friendica-addons.git [mailstream] Check for malformed image URLs and do not attempt to attach them --- diff --git a/mailstream/mailstream.php b/mailstream/mailstream.php index 563dd906..a58dfc1c 100644 --- a/mailstream/mailstream.php +++ b/mailstream/mailstream.php @@ -166,6 +166,9 @@ function mailstream_do_images($a, &$item, &$attachments) { preg_match_all("/\[img\=([^\]]*)\]([^[]*)\[\/img\]/ism", $item["body"], $matches3); foreach (array_merge($matches1[3], $matches2[1], $matches3[1]) as $url) { $components = parse_url($url); + if (!$components) { + continue; + } $cookiejar = tempnam(get_temppath(), 'cookiejar-mailstream-'); $curlResult = Network::fetchUrlFull($url, true, 0, '', $cookiejar); $attachments[$url] = [