gateway/rpc: remove stale valgrind macro

This commit is contained in:
Norbert Federa 2018-10-18 11:45:18 +02:00
parent eea5e2085e
commit d201deede8

View File

@ -338,9 +338,6 @@ SSIZE_T rpc_channel_read(RpcChannel* channel, wStream* s, size_t length)
if (status > 0)
{
#ifdef HAVE_VALGRIND_MEMCHECK_H
VALGRIND_MAKE_MEM_DEFINED(data, status);
#endif
Stream_Seek(s, (size_t)status);
return status;
}