|
From: <s-v...@us...> - 2015-01-02 08:20:34
|
Revision: 247
http://sourceforge.net/p/turnserver/code/247
Author: s-vincent
Date: 2015-01-02 08:20:27 +0000 (Fri, 02 Jan 2015)
Log Message:
-----------
Fixes something scary (patch from Chris West).
Modified Paths:
--------------
trunk/src/turnserver.c
Modified: trunk/src/turnserver.c
===================================================================
--- trunk/src/turnserver.c 2014-01-15 21:06:06 UTC (rev 246)
+++ trunk/src/turnserver.c 2015-01-02 08:20:27 UTC (rev 247)
@@ -957,7 +957,7 @@
struct list_head* n2 = NULL;
if(tmp->relayed_transport_protocol != IPPROTO_TCP ||
- memcmp(tmp->key, account->key, sizeof(tmp->key) != 0))
+ memcmp(tmp->key, account->key, sizeof(tmp->key)) != 0)
{
continue;
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|