You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Summary
Valgrind warns on jump that depends on uninitialised value.
==1094336== Conditional jump or move depends on uninitialised value(s)
==1094336== at 0x422CF2F: indigoIterateMatches (src/api/c/indigo/src/indigo_match.cpp:988)
The line above is
if (matcher.tau_params.method != BASIC && matcher.mode == IndigoMoleculeSubstructureMatcher::TAUTOMER)
At first sight it seems that inverting the order of the check would fix it.
I suppose that tau_params is uninitialised if matcher.mode is not TAUTOMER.
Environment details:
version 1.24.0
The text was updated successfully, but these errors were encountered:
Summary
Valgrind warns on jump that depends on uninitialised value.
The line above is
At first sight it seems that inverting the order of the check would fix it.
I suppose that tau_params is uninitialised if matcher.mode is not TAUTOMER.
Environment details:
The text was updated successfully, but these errors were encountered: