diff options
author | mqy <meng.qingyou@gmail.com> | 2019-08-19 15:53:56 +0800 |
---|---|---|
committer | mqy <meng.qingyou@gmail.com> | 2019-08-19 15:53:56 +0800 |
commit | 64809db2c9ee30779e4839e9d60a315479092ce6 (patch) | |
tree | 05f901fcf47d041ea33bc8fa25f71f34bce4d113 /cell.go | |
parent | 3092ce6e542bec39135844c4bf45fe22f9e30b7a (diff) |
add missing error check in SetSheetRow()
Diffstat (limited to 'cell.go')
-rw-r--r-- | cell.go | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -471,12 +471,14 @@ func (f *File) SetSheetRow(sheet, axis string, slice interface{}) error { for i := 0; i < v.Len(); i++ { cell, err := CoordinatesToCellName(col+i, row) - // Error should never happens here. But keep ckecking to early detect regresions - // if it will be introduced in furure + // Error should never happens here. But keep checking to early detect regresions + // if it will be introduced in future. if err != nil { return err } - f.SetCellValue(sheet, cell, v.Index(i).Interface()) + if err := f.SetCellValue(sheet, cell, v.Index(i).Interface()); err != nil { + return err + } } return err } |