Skip to content

Commit f70461f

Browse files
committed
Fix of #1032
1 parent 107e8e1 commit f70461f

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

geo/dll/src/BoostGeometry.cpp

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1190,6 +1190,14 @@ struct BufferMultiPolygonOperator : public AbstrBufferOperator
11901190
auto resMP = mp->buffer(bufferDistance, pointsPerCircle);
11911191
geos_assign_geometry(resData[i], resMP.get());
11921192
}
1193+
if (processTimer.PassedSecs())
1194+
{
1195+
reportF(SeverityTypeID::ST_MajorTrace, "%s: processed %s / %s sequences of tile %s / %s"
1196+
, GetGroup()->GetNameStr()
1197+
, AsString(i), AsString(n)
1198+
, AsString(t), AsString(resItem->GetTiledRangeData()->GetNrTiles())
1199+
);
1200+
}
11931201
if (++i == n)
11941202
break;
11951203
}

tic/dll/src/TreeItem.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3704,6 +3704,10 @@ bool TreeItem::PrepareDataUsageImpl(DrlType drlFlags) const
37043704
{
37053705
auto fsn = sm->GetNameStr();
37063706
auto rn = GetRelativeName(sp);
3707+
if (rn.empty())
3708+
{
3709+
rn = "@main";
3710+
}
37073711

37083712
auto fn = DelimitedConcat(fsn, rn);
37093713
if (!IsFileOrDirAccessible(fn))

0 commit comments

Comments
 (0)