Skip to content
Permalink
Browse files Browse the repository at this point in the history
xkbcomp: fix pointer value for FreeStmt
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
  • Loading branch information
whot committed Aug 1, 2018
1 parent badb428 commit c1e5ac1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xkbcomp/ast-build.c
Expand Up @@ -240,7 +240,7 @@ ExprAppendMultiKeysymList(ExprDef *expr, ExprDef *append)
darray_append(expr->keysym_list.symsNumEntries, numEntries);
darray_concat(expr->keysym_list.syms, append->keysym_list.syms);

FreeStmt((ParseCommon *) &append);
FreeStmt((ParseCommon *) append);

return expr;
}
Expand Down

1 comment on commit c1e5ac1

@msmeissn
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.