mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
Remove misguiding if
This commit is contained in:
parent
03cc2e629d
commit
3b1606ceb9
@ -90,14 +90,11 @@ bool RsTlvBinaryData::setBinData(const void *data, uint32_t size)
|
|||||||
|
|
||||||
void RsTlvBinaryData::TlvClear()
|
void RsTlvBinaryData::TlvClear()
|
||||||
{
|
{
|
||||||
if (bin_data)
|
free(bin_data);
|
||||||
{
|
|
||||||
free(bin_data);
|
|
||||||
}
|
|
||||||
TlvShallowClear();
|
TlvShallowClear();
|
||||||
}
|
}
|
||||||
|
|
||||||
void RsTlvBinaryData::TlvShallowClear()
|
void RsTlvBinaryData::TlvShallowClear()
|
||||||
{
|
{
|
||||||
bin_data = NULL;
|
bin_data = NULL;
|
||||||
bin_len = 0;
|
bin_len = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user