From 6e0e39b79f1a024fb8dd98101c5fc63a8ec0d8ed Mon Sep 17 00:00:00 2001 From: wm4 Date: Fri, 22 Nov 2019 18:21:33 +0100 Subject: input: change mp_cmd.original from bstr to cstr No reason to have this as bstr, just makes everything more complex. Also clear mp_cmd.sender when it's copied. Otherwise it would be a dangling pointer. Apparently it's never set to non-NULL in this situation, but this is cleaner anyway. --- input/cmd.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'input/cmd.h') diff --git a/input/cmd.h b/input/cmd.h index 83791589ee..72824dffc8 100644 --- a/input/cmd.h +++ b/input/cmd.h @@ -99,7 +99,7 @@ typedef struct mp_cmd { struct mp_cmd_arg *args; int nargs; int flags; // mp_cmd_flags bitfield - bstr original; + char *original; char *input_section; bool is_up_down : 1; bool is_up : 1; -- cgit v1.2.3