Browse Source

Workaround for picoFeed memory leak. Fixes #58

microsub
J. King 7 years ago
parent
commit
feadf51096
  1. 4
      lib/Feed.php

4
lib/Feed.php

@ -75,7 +75,11 @@ class Feed {
// Some feeds might use a different domain (eg: feedburner), so the site url is
// used instead of the feed's url.
$this->favicon = (new Favicon)->find($feed->siteUrl);
// work around a PicoFeed memory leak FIXME: remove this hack (or not) once PicoFeed stops leaking memory
libxml_use_internal_errors(false);
} catch (PicoFeedException $e) {
// work around a PicoFeed memory leak FIXME: remove this hack (or not) once PicoFeed stops leaking memory
libxml_use_internal_errors(false);
throw new Feed\Exception($this->resource->getUrl(), $e);
}

Loading…
Cancel
Save