Commit 0cb0fe9f authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Ignore values non-positive values.

Fixes:	#2773
parent addea755
...@@ -295,7 +295,7 @@ accumulate(struct VSL_data *vsl, struct VSL_transaction * const pt[], ...@@ -295,7 +295,7 @@ accumulate(struct VSL_data *vsl, struct VSL_transaction * const pt[],
} }
} }
if (skip || !match) if (skip || !match || value <= 0)
continue; continue;
/* select bucket */ /* select bucket */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment