Merge pull request #1199 from mmicko/extract_fa_fix

Fix check logic in extract_fa
This commit is contained in:
Clifford Wolf 2019-07-16 15:27:09 +02:00 committed by GitHub
commit 928f0a4438
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -174,7 +174,7 @@ struct ExtractFaWorker
SigSpec sig = root; SigSpec sig = root;
if (ce.eval(sig)) { if (!ce.eval(sig)) {
ce.pop(); ce.pop();
return; return;
} }
@ -216,7 +216,7 @@ struct ExtractFaWorker
SigSpec sig = root; SigSpec sig = root;
if (ce.eval(sig)) { if (!ce.eval(sig)) {
ce.pop(); ce.pop();
return; return;
} }