Menu: Fixed all 2 warnings.
This commit is contained in:
parent
ca5a7feede
commit
4d3cace6da
1 changed files with 2 additions and 2 deletions
|
@ -108,7 +108,7 @@ TCP_Frame(tcpinfo_t *in)
|
|||
|
||||
if (fwrite(in.m_fSocket, (void *)out, strlen(in.m_strBuffer[0])) <= 0) {
|
||||
dprint("^1TCP_Frame^7: Unsuccessful frame\n");
|
||||
memfree(out);
|
||||
memfree((__variant *)out);
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -123,7 +123,7 @@ TCP_Frame(tcpinfo_t *in)
|
|||
}
|
||||
|
||||
in.m_iBufferLines--;
|
||||
memfree(out);
|
||||
memfree((__variant *)out);
|
||||
}
|
||||
|
||||
int
|
||||
|
|
Loading…
Reference in a new issue