aboutsummaryrefslogtreecommitdiff
path: root/libcrystfel/src/image-hdf5.c
diff options
context:
space:
mode:
Diffstat (limited to 'libcrystfel/src/image-hdf5.c')
-rw-r--r--libcrystfel/src/image-hdf5.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/libcrystfel/src/image-hdf5.c b/libcrystfel/src/image-hdf5.c
index 07e3b6b8..ce357f36 100644
--- a/libcrystfel/src/image-hdf5.c
+++ b/libcrystfel/src/image-hdf5.c
@@ -1830,6 +1830,10 @@ char **image_hdf5_expand_frames(const DataTemplate *dtempl,
return full_evs.events;
}
+ if ( !file_exists(filename) ) {
+ ERROR("File not found: %s (hdf5_expand_frames)\n", filename);
+ return NULL;
+ }
fh = H5Fopen(filename, H5F_ACC_RDONLY, H5P_DEFAULT);
if ( fh < 0 ) {