x86: print out immediate as positive number for logic arithmetic operations: AND, OR, XOR. only works for x86 Intel syntax so far. issue reported by Pancake
diff --git a/MCInst.c b/MCInst.c
index cdd7a0d..ab9ded9 100644
--- a/MCInst.c
+++ b/MCInst.c
@@ -14,7 +14,8 @@
 {
 	inst->OpcodePub = 0;
 	inst->size = 0;
-	inst->has_imm = 0;
+	inst->has_imm = false;
+	inst->op1_size = 0;
 }
 
 void MCInst_clear(MCInst *inst)