diff options
| author | Mateusz Poliwczak <mpoliwczak34@gmail.com> | 2023-03-23 10:57:36 +0000 |
|---|---|---|
| committer | Gopher Robot <gobot@golang.org> | 2023-03-24 02:45:13 +0000 |
| commit | 7ec2e8442415bd7d15819cf2aeba3a678223c81c (patch) | |
| tree | b61140c2a5c46154784774f62ec2fe1a4be5e79a /src | |
| parent | 33b634803b55d3a27798c8e42f547558efec0711 (diff) | |
| download | go-7ec2e8442415bd7d15819cf2aeba3a678223c81c.tar.xz | |
crypto/x509: remove unnecessary !Empty() check
This check is already done by PeekASN1Tag.
Change-Id: Ieba0e35548f7f99bce689d29adaea6b8e471cc70
GitHub-Last-Rev: b4ef3dcc2307839cb7575cf29c3e6445b6a7520e
GitHub-Pull-Request: golang/go#59197
Reviewed-on: https://go-review.googlesource.com/c/go/+/478835
Reviewed-by: Roland Shoemaker <roland@golang.org>
Run-TryBot: Ian Lance Taylor <iant@google.com>
Reviewed-by: Ian Lance Taylor <iant@google.com>
Reviewed-by: Filippo Valsorda <filippo@golang.org>
TryBot-Result: Gopher Robot <gobot@golang.org>
Auto-Submit: Ian Lance Taylor <iant@google.com>
Diffstat (limited to 'src')
| -rw-r--r-- | src/crypto/x509/parser.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crypto/x509/parser.go b/src/crypto/x509/parser.go index 5a1819841d..6695212a0b 100644 --- a/src/crypto/x509/parser.go +++ b/src/crypto/x509/parser.go @@ -342,7 +342,7 @@ func parseBasicConstraintsExtension(der cryptobyte.String) (bool, int, error) { } } maxPathLen := -1 - if !der.Empty() && der.PeekASN1Tag(cryptobyte_asn1.INTEGER) { + if der.PeekASN1Tag(cryptobyte_asn1.INTEGER) { if !der.ReadASN1Integer(&maxPathLen) { return false, 0, errors.New("x509: invalid basic constraints") } |
