mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-05 22:17:39 +03:00
Disable hz-gb-2312 encoding support
This commit is contained in:
parent
5523a84866
commit
3a93fc61e3
1 changed files with 37 additions and 0 deletions
37
xtext_bug.go
Normal file
37
xtext_bug.go
Normal file
|
@ -0,0 +1,37 @@
|
|||
//+build !hz_gb_2312
|
||||
|
||||
package maddy
|
||||
|
||||
import (
|
||||
"errors"
|
||||
|
||||
"github.com/emersion/go-message/charset"
|
||||
"golang.org/x/text/encoding"
|
||||
)
|
||||
|
||||
/*
|
||||
|
||||
Disallow hz-gb-2312 encoding as it can trigger OOM crash.
|
||||
|
||||
https://github.com/emersion/go-message/issues/95
|
||||
https://github.com/golang/go/issues/35118
|
||||
*/
|
||||
|
||||
type dummyEncoding struct{}
|
||||
|
||||
func (dummyEncoding) NewDecoder() *encoding.Decoder {
|
||||
return &encoding.Decoder{Transformer: dummyEncoding{}}
|
||||
}
|
||||
func (dummyEncoding) NewEncoder() *encoding.Encoder {
|
||||
return &encoding.Encoder{Transformer: dummyEncoding{}}
|
||||
}
|
||||
|
||||
func (dummyEncoding) Reset() {}
|
||||
|
||||
func (dummyEncoding) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {
|
||||
return 0, 0, errors.New("hz-gb-2312 decoding is disabled due to known issues")
|
||||
}
|
||||
|
||||
func init() {
|
||||
charset.RegisterEncoding("hz-gb-2312", dummyEncoding{})
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue