From: Tilman Sauerbeck Date: Mon, 1 Jan 2018 10:58:56 +0000 (+0100) Subject: Use strdup() in Client_textmessage(). X-Git-Url: http://git.code-monkey.de/?a=commitdiff_plain;h=d9280fa11ed4cb6cc0f36394c5d57350464973b3;hp=d9280fa11ed4cb6cc0f36394c5d57350464973b3;p=umurmur.git Use strdup() in Client_textmessage(). This is more efficient than the combination of malloc(), strlen() and strcpy() that we used before. ---