Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ErrBadPattern (0.17 sec)

  1. src/io/fs/glob_test.go

    		}
    	}
    }
    
    func TestGlobError(t *testing.T) {
    	bad := []string{`[]`, `nonexist/[]`}
    	for _, pattern := range bad {
    		_, err := Glob(os.DirFS("."), pattern)
    		if err != path.ErrBadPattern {
    			t.Errorf("Glob(fs, %#q) returned err=%v, want path.ErrBadPattern", pattern, err)
    		}
    	}
    }
    
    func TestCVE202230630(t *testing.T) {
    	// Prior to CVE-2022-30630, a stack exhaustion would occur given a large
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:36:52 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. src/path/filepath/match_test.go

    	{"[]a]", "]", false, ErrBadPattern},
    	{"[-]", "-", false, ErrBadPattern},
    	{"[x-]", "x", false, ErrBadPattern},
    	{"[x-]", "-", false, ErrBadPattern},
    	{"[x-]", "z", false, ErrBadPattern},
    	{"[-x]", "x", false, ErrBadPattern},
    	{"[-x]", "-", false, ErrBadPattern},
    	{"[-x]", "a", false, ErrBadPattern},
    	{"\\", "a", false, ErrBadPattern},
    	{"[a-b-c]", "a", false, ErrBadPattern},
    	{"[", "a", false, ErrBadPattern},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  3. src/path/filepath/match.go

    	if len(chunk) == 0 || chunk[0] == '-' || chunk[0] == ']' {
    		err = ErrBadPattern
    		return
    	}
    	if chunk[0] == '\\' && runtime.GOOS != "windows" {
    		chunk = chunk[1:]
    		if len(chunk) == 0 {
    			err = ErrBadPattern
    			return
    		}
    	}
    	r, n := utf8.DecodeRuneInString(chunk)
    	if r == utf8.RuneError && n == 1 {
    		err = ErrBadPattern
    	}
    	nchunk = chunk[n:]
    	if len(nchunk) == 0 {
    		err = ErrBadPattern
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top