summaryrefslogtreecommitdiffstats
path: root/player/client.c
diff options
context:
space:
mode:
Diffstat (limited to 'player/client.c')
-rw-r--r--player/client.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/player/client.c b/player/client.c
index 6bb9b18160..b7ee01066f 100644
--- a/player/client.c
+++ b/player/client.c
@@ -883,7 +883,7 @@ int mpv_command(mpv_handle *ctx, const char **args)
int mpv_command_node(mpv_handle *ctx, mpv_node *args, mpv_node *result)
{
int r = run_client_command(ctx, mp_input_parse_cmd_node(ctx->log, args));
- if (r >= 0)
+ if (result && r >= 0)
*result = (mpv_node){.format = MPV_FORMAT_NONE};
return r;
}