Peter M. Groen
/
openbr
Toggle navigation
Sign in
Sign in
Project
Files
Commits
Network
Graphs
Milestones
Issues
0
Merge Requests
0
Labels
Wiki
Download as
Email Patches
Plain Diff
Browse Code ยป
Commit
49e318634c1912044d47fe83988e626eed792acc
Authored by
Josh Klontz
2013-03-24 17:01:38 -0400
1 parent
ad604b9c
evalOutput bug fix
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletions
openbr/plugins/output.cpp
openbr/plugins/output.cpp
View file @
49e3186
...
...
@@ -269,7 +269,8 @@ class evalOutput : public MatrixOutput
269
269
270
270
~evalOutput()
271
271
{
272
- Evaluate(data, BEE::makeMask(targetFiles, queryFiles), "");
272
+ if (data.data)
273
+ Evaluate(data, BEE::makeMask(targetFiles, queryFiles), "");
273
274
}
274
275
};
275
276
...
...