Closed riccardo-tesio closed 7 years ago
When a cell contains NULL, then all the remaining cells in the row are returned with NULL values.
Fix: in Utils.swift, func lenEncStr(b:[UInt8]) ->(String?, Int), around line 213: guard num != nil else { return (nil, 0) } should be changed with:
Utils.swift
func lenEncStr(b:[UInt8]) ->(String?, Int)
guard num != nil else { return (nil, 0) }
`guard num != nil else { return (nil, n) }`
@riccardo-tesio can you open a PR with this fix?
When a cell contains NULL, then all the remaining cells in the row are returned with NULL values.
Fix: in
Utils.swift
,func lenEncStr(b:[UInt8]) ->(String?, Int)
, around line 213:guard num != nil else { return (nil, 0) }
should be changed with: