Browse Source

Optimize file paths

Volodymyr Tkach 2 years ago
parent
commit
41f763d66d
1 changed files with 3 additions and 3 deletions
  1. 3 3
      session/session.go

+ 3 - 3
session/session.go

@@ -33,7 +33,7 @@ func New(w http.ResponseWriter, r *http.Request, tmpdir string) *Session {
 	if err == nil && len(cookie.Value) == 40 {
 	if err == nil && len(cookie.Value) == 40 {
 		// Load from file
 		// Load from file
 		sess.i = cookie.Value
 		sess.i = cookie.Value
-		fname := sess.d + string(os.PathSeparator) + sess.i
+		fname := strings.Join([]string{sess.d, sess.i}, string(os.PathSeparator))
 		f, err := os.Open(fname)
 		f, err := os.Open(fname)
 		if err == nil {
 		if err == nil {
 			defer f.Close()
 			defer f.Close()
@@ -91,7 +91,7 @@ func (this *Session) Close() bool {
 
 
 	r, err := json.Marshal(this.v)
 	r, err := json.Marshal(this.v)
 	if err == nil {
 	if err == nil {
-		f, err := os.Create(this.d + string(os.PathSeparator) + this.i)
+		f, err := os.Create(strings.Join([]string{this.d, this.i}, string(os.PathSeparator)))
 		if err == nil {
 		if err == nil {
 			defer f.Close()
 			defer f.Close()
 			_, err = f.Write(r)
 			_, err = f.Write(r)
@@ -109,7 +109,7 @@ func (this *Session) Destroy() error {
 	if this.d == "" || this.i == "" {
 	if this.d == "" || this.i == "" {
 		return nil
 		return nil
 	}
 	}
-	err := os.Remove(this.d + string(os.PathSeparator) + this.i)
+	err := os.Remove(strings.Join([]string{this.d, this.i}, string(os.PathSeparator)))
 	if err == nil {
 	if err == nil {
 		this.c = false
 		this.c = false
 	}
 	}