Codechange: Dereference with x-> instead of (*x). (#14700)

This commit is contained in:
Peter Nelson
2025-10-05 15:47:33 +01:00
committed by dP
parent 47ab2d3bb5
commit 962ac9fcbf
12 changed files with 19 additions and 19 deletions
+1 -1
View File
@@ -593,7 +593,7 @@ bool ExtractTar(const std::string &tar_filename, Subdirectory subdir)
/* We don't know the file. */
if (it == _tar_list[subdir].end()) return false;
const auto &dirname = (*it).second;
const auto &dirname = it->second;
/* The file doesn't have a sub directory! */
if (dirname.empty()) {