[Forensics-changes] [yara] 285/407: Fix bug in multiplication
Hilko Bengen
bengen at moszumanska.debian.org
Sat Jul 1 10:28:37 UTC 2017
This is an automated email from the git hooks/post-receive script.
bengen pushed a commit to annotated tag v3.3.0
in repository yara.
commit d9f7e2c297badd0db961d415ff0840422b95b1c3
Author: Victor M. Alvarez <plusvic at gmail.com>
Date: Wed Dec 31 12:00:39 2014 +0100
Fix bug in multiplication
---
libyara/parser.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libyara/parser.c b/libyara/parser.c
index 699bc88..6f3b26a 100644
--- a/libyara/parser.c
+++ b/libyara/parser.c
@@ -1006,7 +1006,7 @@ int _yr_parser_operator_to_opcode(
}
else if (op[0] == '*')
{
- opcode += _OP_SUB;
+ opcode += _OP_MUL;
}
else if (op[0] == '\\')
{
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/forensics/yara.git
More information about the forensics-changes
mailing list