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. --- player/command.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'player/command.c') diff --git a/player/command.c b/player/command.c index 00ebddf343..85a44e3603 100644 --- a/player/command.c +++ b/player/command.c @@ -4819,8 +4819,8 @@ static void cmd_add_cycle(void *p) char *property = cmd->args[0].v.s; if (cmd->cmd->repeated && !check_property_autorepeat(property, mpctx)) { - MP_VERBOSE(mpctx, "Dropping command '%.*s' from auto-repeated key.\n", - BSTR_P(cmd->cmd->original)); + MP_VERBOSE(mpctx, "Dropping command '%s' from auto-repeated key.\n", + cmd->cmd->original); return; } -- cgit v1.2.3