Merge pull request #4941 from nfedera/nf-remove-stale-valgrind-macro

gateway/rpc: remove stale valgrind macro
This commit is contained in:
Norbert Federa 2018-10-18 14:08:23 +02:00 committed by GitHub
commit 5ef243f91f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 3 deletions

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;
}