summaryrefslogtreecommitdiff
path: root/col.go
diff options
context:
space:
mode:
authorxuri <xuri.me@gmail.com>2022-09-01 00:41:52 +0800
committerxuri <xuri.me@gmail.com>2022-09-01 00:41:52 +0800
commit75ce2317286181e2c250c10206df892278d5b981 (patch)
tree5e040d90cbb170a0cbdc0c6a57e0b86c7bc82845 /col.go
parent18cd63a548afa1abcddc86a998fdefa3b4cc60c1 (diff)
This closes #1323, an error will be returned when set the not exist style ID
Diffstat (limited to 'col.go')
-rw-r--r--col.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/col.go b/col.go
index f51336d..c0deb58 100644
--- a/col.go
+++ b/col.go
@@ -415,6 +415,13 @@ func (f *File) SetColStyle(sheet, columns string, styleID int) error {
if err != nil {
return err
}
+ s := f.stylesReader()
+ s.Lock()
+ if styleID < 0 || s.CellXfs == nil || len(s.CellXfs.Xf) <= styleID {
+ s.Unlock()
+ return newInvalidStyleID(styleID)
+ }
+ s.Unlock()
ws, err := f.workSheetReader(sheet)
if err != nil {
return err