aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libcrystfel/src/hdf5-file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libcrystfel/src/hdf5-file.c b/libcrystfel/src/hdf5-file.c
index 473d7da7..24a8c282 100644
--- a/libcrystfel/src/hdf5-file.c
+++ b/libcrystfel/src/hdf5-file.c
@@ -2131,7 +2131,7 @@ int check_path_existence(hid_t fh, const char *path)
int check;
sep = strstr(start, "/");
- if ( strlen(sep) == 1 ) {
+ if ( sep != NULL && strlen(sep) == 1 ) {
ERROR("Error: Data path ends with a / symbol\n");
free(path_copy);
return 1;