projects
/
umurmur.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ccdcbaf
)
Remove buffer zeroing since it's not neccesary.
author
fatbob313
<martin@fatbob.nu>
Sun, 31 Jan 2010 22:15:33 +0000
(22:15 +0000)
committer
fatbob313
<martin@fatbob.nu>
Sun, 31 Jan 2010 22:15:33 +0000
(22:15 +0000)
src/client.c
patch
|
blob
|
history
diff --git
a/src/client.c
b/src/client.c
index 2ca4421a53be3e738bcf18ef5aff3e8621664ec2..0808253460ec311d1a2a64a2f0d60d5d7b0c2f89 100644
(file)
--- a/
src/client.c
+++ b/
src/client.c
@@
-518,7
+518,6
@@
int Client_send_message(client_t *client, message_t *msg)
Log_debug("Queueing message");
} else {
int len;
- memset(client->txbuf, 0, BUFSIZE);
len = Msg_messageToNetwork(msg, client->txbuf);
doAssert(len < BUFSIZE);