Fix uninitialized variable warning. NFCI.

This commit is contained in:
Simon Pilgrim 2019-11-02 16:45:06 +00:00
parent fe1a1d5aae
commit 08e593895d
1 changed files with 1 additions and 1 deletions

View File

@ -1092,7 +1092,7 @@ static int ar_main(int argc, char **argv) {
cl::ExpandResponseFiles(Saver, cl::TokenizeGNUCommandLine, Argv);
for (size_t i = 1; i < Argv.size(); ++i) {
StringRef Arg = Argv[i];
const char *match;
const char *match = nullptr;
auto MatchFlagWithArg = [&](const char *expected) {
size_t len = strlen(expected);
if (Arg == expected) {