forked from jshiffer/go-xmpp
parent
862c21f845
commit
0c7ee22452
5
xmpp.go
5
xmpp.go
@ -1493,11 +1493,12 @@ func (c *Client) nextEnd() (xml.EndElement, error) {
|
||||
c.p.Strict = false
|
||||
for {
|
||||
c.nextMutex.Lock()
|
||||
t, err := c.p.RawToken()
|
||||
if err != nil || t == nil {
|
||||
to, err := c.p.RawToken()
|
||||
if err != nil || to == nil {
|
||||
c.nextMutex.Unlock()
|
||||
return xml.EndElement{}, err
|
||||
}
|
||||
t := xml.CopyToken(to)
|
||||
switch t := t.(type) {
|
||||
case xml.EndElement:
|
||||
c.nextMutex.Unlock()
|
||||
|
Loading…
Reference in New Issue
Block a user