forked from jshiffer/go-xmpp
Remove extra allocation of XML Decoder
XML Decoder is allocated in startStream so it overwrites the one allocated in init()
This commit is contained in:
parent
9aeb3722bf
commit
9df9a5b5f9
6
xmpp.go
6
xmpp.go
@ -276,12 +276,6 @@ func cnonce() string {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (c *Client) init(o *Options) error {
|
func (c *Client) init(o *Options) error {
|
||||||
if o.Debug {
|
|
||||||
// For debugging: the following causes the plaintext of the connection to be duplicated to stderr.
|
|
||||||
c.p = xml.NewDecoder(tee{c.conn, os.Stderr})
|
|
||||||
} else {
|
|
||||||
c.p = xml.NewDecoder(c.conn)
|
|
||||||
}
|
|
||||||
|
|
||||||
var domain string
|
var domain string
|
||||||
var user string
|
var user string
|
||||||
|
Loading…
Reference in New Issue
Block a user