fixed nasty bug that made XGB not thread safe

This commit is contained in:
Andrew Gallant (Ocelot) 2012-05-08 23:03:45 -04:00
parent 62b293c937
commit 5d64f69030
1 changed files with 1 additions and 1 deletions

View File

@ -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 {