diff options
-rw-r--r-- | libcrystfel/src/hdf5-file.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libcrystfel/src/hdf5-file.c b/libcrystfel/src/hdf5-file.c index fc4b1355..473d7da7 100644 --- a/libcrystfel/src/hdf5-file.c +++ b/libcrystfel/src/hdf5-file.c @@ -2131,6 +2131,11 @@ int check_path_existence(hid_t fh, const char *path) int check; sep = strstr(start, "/"); + if ( strlen(sep) == 1 ) { + ERROR("Error: Data path ends with a / symbol\n"); + free(path_copy); + return 1; + } if ( sep != NULL ) { |