Skip to content

Commit

Permalink
Fix bug related to unsupported entries containing only empty sparse b…
Browse files Browse the repository at this point in the history
…locks (#243)

Report de la correction de la PR #241
"Fix bug for unsupported entries containing only empty sparse blocks"
  • Loading branch information
marcboulle authored Apr 16, 2024
1 parent 0ce59b8 commit 453e074
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/Learning/KWData/KWDataTableDriverTextFile.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -387,10 +387,16 @@ KWObject* KWDataTableDriverTextFile::Read()
kwoObject = NULL;
break;
}
// Sinon, on sort pour ne pas comptabiliser le champs,
// uniquement si on est dans le cas d'un dictionnaire sans attribut natif
// Sinon, on sort si on est dans le cas d'un dictionnaire sans attribut natif
else if (kwcClass->GetNativeDataItemNumber() == 0)
{
// On comptabilise le champ dans le cas d'un champ dans le fichier pour indiquer que
// l'on a bien lu tous les champs de la ligne, dans ce cas particulier d'un ligne vide
// interpretee comme une ligne comportant un seul champ avec valeur manquante
if (livDataItemLoadIndexes.GetSize() == 1)
nField++;
break;
}
}

// Alimentation des champs de la derniere cle lue si necessaire
Expand Down

0 comments on commit 453e074

Please sign in to comment.