From 3f1c6a1fbc241721aafeb9e1e6c0cbdb1eb810b5 Mon Sep 17 00:00:00 2001 From: Thomas White Date: Thu, 7 Sep 2017 16:49:42 +0200 Subject: Fix uninitialised peak counts (for info in stream only) --- libcrystfel/src/hdf5-file.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'libcrystfel/src/hdf5-file.c') diff --git a/libcrystfel/src/hdf5-file.c b/libcrystfel/src/hdf5-file.c index 13339506..6fc10357 100644 --- a/libcrystfel/src/hdf5-file.c +++ b/libcrystfel/src/hdf5-file.c @@ -409,6 +409,8 @@ int get_peaks_cxi_2(struct image *image, struct hdfile *f, const char *p, } image->features = image_feature_list_new(); + image->num_peaks = 0; + image->num_saturated_peaks = 0; for ( pk=0; pkorig_min_ss; image_add_feature(image->features, fs, ss, p, image, val, NULL); + image->num_peaks++; } @@ -554,6 +557,8 @@ int get_peaks_2(struct image *image, struct hdfile *f, const char *p, } image->features = image_feature_list_new(); + image->num_peaks = 0; + image->num_saturated_peaks = 0; for ( i=0; ifeatures, fs, ss, p, image, val, NULL); + image->num_peaks++; } -- cgit v1.2.3