From 5dbd30a66af7e945da9b0c0ead6e034ba6c96d00 Mon Sep 17 00:00:00 2001 From: Thomas White Date: Fri, 4 Jan 2013 11:40:50 +0100 Subject: integrate_peak(): check that 'saturated' isn't NULL before using Fixes a segfault --- libcrystfel/src/peaks.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libcrystfel/src/peaks.c b/libcrystfel/src/peaks.c index 2258ec03..dabc3b1a 100644 --- a/libcrystfel/src/peaks.c +++ b/libcrystfel/src/peaks.c @@ -236,7 +236,7 @@ static int integrate_peak(struct image *image, int cfs, int css, if ( p == NULL ) return 1; if ( p->no_index ) return 1; - *saturated = 0; + if ( saturated != NULL ) *saturated = 0; /* Determine regions where there is expected to be a peak */ p_cfs = cfs - p->min_fs; -- cgit v1.2.3