Skip to content

Commit

Permalink
Merge pull request #10957 from rouault/gtiff_GetSiblingFiles
Browse files Browse the repository at this point in the history
GTiff: use main dataset GetSiblingFiles() for overviews
  • Loading branch information
rouault authored Oct 8, 2024
2 parents 3f2c59b + fc7e43e commit 7912e57
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions frmts/gtiff/gtiffdataset_read.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5819,6 +5819,10 @@ CSLConstList GTiffDataset::GetSiblingFiles()
{
return oOvManager.GetSiblingFiles();
}
if (m_poBaseDS)
{
return m_poBaseDS->GetSiblingFiles();
}

m_bHasGotSiblingFiles = true;
const int nMaxFiles =
Expand Down

0 comments on commit 7912e57

Please sign in to comment.