diff options
Diffstat (limited to 'src/process_hkl.c')
-rw-r--r-- | src/process_hkl.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/process_hkl.c b/src/process_hkl.c index 6ff40159..f5e705bd 100644 --- a/src/process_hkl.c +++ b/src/process_hkl.c @@ -468,11 +468,11 @@ int main(int argc, char *argv[]) output = strdup("processed.hkl"); } - if ( pdb == NULL ) { - pdb = strdup("molecule.pdb"); - } - cell = load_cell_from_pdb(pdb); + if ( cell == NULL ) { + ERROR("Failed to load cell from '%s'\n", pdb); + return 1; + } free(pdb); if ( sym == NULL ) sym = strdup("1"); @@ -537,7 +537,6 @@ int main(int argc, char *argv[]) write_reflist(output, model, cell); - cell_free(cell); fclose(fh); free(sym); reflist_free(model); |