From b5cffa9536b8927bf4482a50e190fdcb525d0e8d Mon Sep 17 00:00:00 2001 From: Thomas White Date: Fri, 30 Nov 2012 17:30:49 +0100 Subject: Fix uninitialised saturation flag --- libcrystfel/src/peaks.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libcrystfel/src/peaks.c b/libcrystfel/src/peaks.c index 6bf956e2..236c0c52 100644 --- a/libcrystfel/src/peaks.c +++ b/libcrystfel/src/peaks.c @@ -236,6 +236,8 @@ static int integrate_peak(struct image *image, int cfs, int css, if ( p == NULL ) return 1; if ( p->no_index ) return 1; + *saturated = 0; + /* Determine regions where there is expected to be a peak */ p_cfs = cfs - p->min_fs; p_css = css - p->min_ss; /* Panel-relative coordinates */ -- cgit v1.2.3