On 05/08/2018 10:25 AM, Beartooth wrote:
> 
>     Pan is always on the first list of things I make sure I have after
> any new install, but on F28 it tries and crashes. (I'm running Mate, in
> case that matters.
> 
>     Clue, please?
> 

I posted a patch for the bug I found a month or two ago and it got taken
into Pan. But maybe Fedora hasn't updated yet. I'm not sure who their
maintainer is.

If you download the code you can patch it with this then build it:



-- 
                Knowledge is Power -- Power Corrupts
                        Study Hard -- Be Evil
diff --git a/pan/data-impl/rules-filter.cc b/pan/data-impl/rules-filter.cc
index abc2506..c0d26c4 100644
--- a/pan/data-impl/rules-filter.cc
+++ b/pan/data-impl/rules-filter.cc
@@ -36,7 +36,9 @@ RulesFilter :: finalize (Data& data)
   _delete.clear();
 
   const std::vector<const Article*> tmp (_mark_read.begin(), _mark_read.end());
-  data.mark_read ((const Article**)&tmp.front(), tmp.size());
+  if (!tmp.empty()) {
+    data.mark_read ((const Article**)&tmp.front(), tmp.size());
+  }
   _mark_read.clear();
 
   const std::vector<const Article*> tmp2 ( _cached.begin(),  _cached.end());
_______________________________________________
Pan-users mailing list
Pan-users@nongnu.org
https://lists.nongnu.org/mailman/listinfo/pan-users

Reply via email to