Browse Source

Missed use of the ref macro.

See e158881def12.
msvc10
Skoader 12 years ago
parent
commit
615b1017bd
  1. 2
      MOULOpenSourceClientPlugin/Plasma20/Sources/Plasma/NucleusLib/pnNetDiag/pnNdDns.cpp
  2. 4
      MOULOpenSourceClientPlugin/Plasma20/Sources/Plasma/NucleusLib/pnNetDiag/pnNdTcp.cpp

2
MOULOpenSourceClientPlugin/Plasma20/Sources/Plasma/NucleusLib/pnNetDiag/pnNdDns.cpp

@ -78,7 +78,7 @@ static void LookupCallback (
unsigned addrCount,
const NetAddress addrs[]
) {
ref(name);
REF(name);
DNSParam * p = (DNSParam *)param;
if (addrCount) {

4
MOULOpenSourceClientPlugin/Plasma20/Sources/Plasma/NucleusLib/pnNetDiag/pnNdTcp.cpp

@ -154,7 +154,7 @@ static bool Recv_PingReply (
unsigned bytes,
void *
) {
ref(bytes);
REF(bytes);
const Auth2Cli_PingReply & reply = *(const Auth2Cli_PingReply *)msg;
@ -415,7 +415,7 @@ static bool AuthSocketNotifyCallback (
//============================================================================
static bool Recv_File2Cli_ManifestReply (FileConn * conn, const File2Cli_ManifestReply & msg) {
ref(conn);
REF(conn);
FileTrans * trans;
s_critsect.Enter();

Loading…
Cancel
Save