Skip to content

Commit 0e8690a

Browse files
committedMar 24, 2013
trim filepath quotes
fixes windows filepathes
1 parent d4d4dab commit 0e8690a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎infile.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ func init() {
3232
// Alternatively you can allow the use of all local files with
3333
// the DSN parameter 'allowAllFiles=true'
3434
func RegisterLocalFile(filepath string) {
35-
fileRegister[filepath] = true
35+
fileRegister[strings.Trim(filepath, `"`)] = true
3636
}
3737

3838
// RegisterReaderHandler registers a handler function which is used
@@ -62,6 +62,7 @@ func (mc *mysqlConn) handleInFileRequest(name string) (err error) {
6262
}
6363
}
6464
} else { // File
65+
name = strings.Trim(name, `"`)
6566
if fileRegister[name] || mc.cfg.params[`allowAllFiles`] == `true` {
6667
rdr, err = os.Open(name)
6768
} else {

0 commit comments

Comments
 (0)