From 53b7a10f5453083390e65bdab5f1e642c37d89a2 Mon Sep 17 00:00:00 2001 From: wm4 Date: Fri, 8 Nov 2019 00:43:46 +0100 Subject: wscript: add --enable-ta-leak-report option Kind of more convenient because I'm lazy. --- player/main.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'player/main.c') diff --git a/player/main.c b/player/main.c index 8894988e99..1c8c8014b1 100644 --- a/player/main.c +++ b/player/main.c @@ -266,7 +266,9 @@ struct MPContext *mp_create(void) } char *enable_talloc = getenv("MPV_LEAK_REPORT"); - if (enable_talloc && strcmp(enable_talloc, "1") == 0) + if (!enable_talloc) + enable_talloc = HAVE_TA_LEAK_REPORT ? "1" : "0"; + if (strcmp(enable_talloc, "1") == 0) talloc_enable_leak_report(); mp_time_init(); -- cgit v1.2.3