Commit b0b82f39 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp Committed by Dridi Boukelmoune

Ignore values non-positive values.

Fixes:	#2773
parent 1bb0f189
...@@ -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