Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Oleksii Turkot
CrystFEL
Commits
4a15541c
Commit
4a15541c
authored
Jun 24, 2011
by
Thomas White
Browse files
Don't free non-existent reference list
parent
aefce4a6
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/partialator.c
View file @
4a15541c
...
...
@@ -465,8 +465,10 @@ int main(int argc, char *argv[])
free_detector_geometry
(
det
);
free
(
beam
);
free
(
cref
);
free
(
reference
);
reflist_free
(
reference_list
);
if
(
reference
!=
NULL
)
{
free
(
reference
);
reflist_free
(
reference_list
);
}
for
(
i
=
0
;
i
<
n_usable_patterns
;
i
++
)
{
cell_free
(
images
[
i
].
indexed_cell
);
free
(
images
[
i
].
filename
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment