summaryrefslogtreecommitdiff
path: root/cell.go
diff options
context:
space:
mode:
authormqy <meng.qingyou@gmail.com>2019-08-19 15:53:56 +0800
committermqy <meng.qingyou@gmail.com>2019-08-19 15:53:56 +0800
commit64809db2c9ee30779e4839e9d60a315479092ce6 (patch)
tree05f901fcf47d041ea33bc8fa25f71f34bce4d113 /cell.go
parent3092ce6e542bec39135844c4bf45fe22f9e30b7a (diff)
add missing error check in SetSheetRow()
Diffstat (limited to 'cell.go')
-rw-r--r--cell.go8
1 files changed, 5 insertions, 3 deletions
diff --git a/cell.go b/cell.go
index 9d478a5..e897379 100644
--- a/cell.go
+++ b/cell.go
@@ -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
}