summaryrefslogtreecommitdiff
path: root/plugins/arm/v7/operands/rotation.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/arm/v7/operands/rotation.c')
-rw-r--r--plugins/arm/v7/operands/rotation.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/plugins/arm/v7/operands/rotation.c b/plugins/arm/v7/operands/rotation.c
index 5db1d27..bd99e63 100644
--- a/plugins/arm/v7/operands/rotation.c
+++ b/plugins/arm/v7/operands/rotation.c
@@ -279,6 +279,8 @@ static GArchOperand *g_armv7_rotation_operand_get_inner_operand_from_path(const
{
GArchOperand *result; /* Opérande trouvée à renvoyer */
+ result = NULL;
+
if (strncmp(path, "0", 1) == 0)
switch (path[1])
{
@@ -291,10 +293,6 @@ static GArchOperand *g_armv7_rotation_operand_get_inner_operand_from_path(const
result = g_arch_operand_get_inner_operand_from_path(operand->value, path + 1);
break;
- default:
- result = NULL;
- break;
-
}
return result;