mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-17 18:06:03 -05:00
Merge pull request #1105 from drpaneas/fix_ci
Fix golang-ci gocritic error
This commit is contained in:
commit
5b1debd3f0
@ -4,6 +4,7 @@ import (
|
||||
"bufio"
|
||||
"errors"
|
||||
"fmt"
|
||||
"io/fs"
|
||||
"io/ioutil"
|
||||
"os"
|
||||
"path/filepath"
|
||||
@ -181,14 +182,13 @@ func (mpq *MPQ) Size() uint32 {
|
||||
func openIgnoreCase(mpqPath string) (*os.File, error) {
|
||||
// First see if file exists with specified case
|
||||
mpqFile, err := os.Open(mpqPath) //nolint:gosec // Will fix later
|
||||
if err == nil {
|
||||
return mpqFile, err
|
||||
}
|
||||
|
||||
if err != nil {
|
||||
mpqName := filepath.Base(mpqPath)
|
||||
mpqDir := filepath.Dir(mpqPath)
|
||||
|
||||
files, err := ioutil.ReadDir(mpqDir)
|
||||
var files []fs.FileInfo
|
||||
files, err = ioutil.ReadDir(mpqDir)
|
||||
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
@ -201,4 +201,7 @@ func openIgnoreCase(mpqPath string) (*os.File, error) {
|
||||
}
|
||||
|
||||
return os.Open(filepath.Join(mpqDir, mpqName)) //nolint:gosec // Will fix later
|
||||
}
|
||||
|
||||
return mpqFile, err
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user