From: Mark Wooding Date: Tue, 5 May 2020 19:06:05 +0000 (+0100) Subject: server/schedule.c: Maintain separate variables for raw and resolved tracks. X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/disorder/commitdiff_plain/5227899647fb6d1f5fe2951e5db1a2bc86933a9f?hp=5227899647fb6d1f5fe2951e5db1a2bc86933a9f server/schedule.c: Maintain separate variables for raw and resolved tracks. GCC 9 correctly points out that, if `trackdb_resolve' fails, we try to print a null pointer in the error message, rather than the offending track name. Fix this by not reusing the same variable for two different jobs with overlapping lifetimes. ---