Skip to content

Commit

Permalink
Fixed error when creating PDF in RowSpanAbove
Browse files Browse the repository at this point in the history
  • Loading branch information
VahidN committed Jul 5, 2018
1 parent 591270b commit 1a427f5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/iTextSharp.LGPLv2.Core/iTextSharp.LGPLv2.Core.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description> iTextSharp.LGPLv2.Core is an unofficial port of the last LGPL version of the iTextSharp (V4.1.6) to .NET Core.</Description>
<VersionPrefix>1.4.3</VersionPrefix>
<VersionPrefix>1.4.4</VersionPrefix>
<LangVersion>latest</LangVersion>
<Authors>Vahid Nasiri</Authors>
<TargetFrameworks>net40;netstandard1.3;netstandard2.0</TargetFrameworks>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1353,6 +1353,7 @@ internal bool RowSpanAbove(int currRow, int currCol)
while ((aboveCell == null) && (row > 0))
{
aboveRow = (PdfPRow)rows[--row];
if (aboveRow == null) return false;
aboveCell = aboveRow.GetCells()[currCol];
}

Expand Down

0 comments on commit 1a427f5

Please sign in to comment.