Skip to content

Commit

Permalink
fix bug #73052
Browse files Browse the repository at this point in the history
  • Loading branch information
RIMINMIR committed Feb 4, 2025
1 parent a83e19c commit a33743c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ void PtgExtraArray::save(CFRecord& record)
const std::wstring PtgExtraArray::toString() const
{
std::wstring ret_val;
unsigned char col_cnt = cols;
unsigned char col_cnt = cols + 1;

if (array_.empty()) return L"";

Expand All @@ -152,7 +152,7 @@ const std::wstring PtgExtraArray::toString() const
else
{
ret_val += L';';
col_cnt = cols;
col_cnt = cols + 1;
}
}
ret_val += array_.back()->toString();
Expand Down

0 comments on commit a33743c

Please sign in to comment.