From: Fangrui Song Date: Mon, 8 Jan 2018 18:57:38 +0000 (+0000) Subject: [index] Return when DC is null in handleReference X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f0f28f26f24592df4e78ffbf770f0e514dea2c4f;p=clang [index] Return when DC is null in handleReference Summary: DC may sometimes be NULL and getContainerInfo(DC, Container) will dereference a null pointer. Default template arguments (the following example and many test files in https://github.com/nlohmann/json) may cause null pointer dereference. ```c++ template struct actor; template