iterate through same number of columns as defined in the header

This commit is contained in:
Michael Becker 2019-11-22 19:21:13 -05:00
parent d8e0ae501c
commit ad21159d3d
No known key found for this signature in database
GPG Key ID: 389DFF5D73781A12

View File

@ -472,7 +472,7 @@ namespace UniversalEditor.Plugins.CRI.DataFormats.Database.UTF
for (int i = 0; i < dt.Records.Count; i++)
{
for (int j = 0; j < dt.Records[i].Fields.Count; j++)
for (int j = 0; j < dt.Fields.Count; j++)
{
if (columnStorageTypes[j] == UTFColumnStorageType.PerRow)
{