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
|
c.p.Strict = false
|
||||||
for {
|
for {
|
||||||
c.nextMutex.Lock()
|
c.nextMutex.Lock()
|
||||||
t, err := c.p.RawToken()
|
to, err := c.p.RawToken()
|
||||||
if err != nil || t == nil {
|
if err != nil || to == nil {
|
||||||
c.nextMutex.Unlock()
|
c.nextMutex.Unlock()
|
||||||
return xml.EndElement{}, err
|
return xml.EndElement{}, err
|
||||||
}
|
}
|
||||||
|
t := xml.CopyToken(to)
|
||||||
switch t := t.(type) {
|
switch t := t.(type) {
|
||||||
case xml.EndElement:
|
case xml.EndElement:
|
||||||
c.nextMutex.Unlock()
|
c.nextMutex.Unlock()
|
||||||
|
Loading…
Reference in New Issue
Block a user