fixed nasty bug that made XGB not thread safe
This commit is contained in:
parent
62b293c937
commit
5d64f69030
|
@ -303,8 +303,8 @@ func (c *Conn) readResponses() {
|
|||
replyBytes []byte
|
||||
)
|
||||
|
||||
buf := make([]byte, 32)
|
||||
for {
|
||||
buf := make([]byte, 32)
|
||||
err, event, seq = nil, nil, 0
|
||||
|
||||
if _, err := io.ReadFull(c.conn, buf); err != nil {
|
||||
|
|
Loading…
Reference in New Issue