forked from OSchip/llvm-project
Fix -Werror compilation.
It was broken in r197601. llvm-svn: 197665
This commit is contained in:
parent
f8c58c8dc8
commit
3a28dc7158
|
@ -796,7 +796,7 @@ __dfsw_socketpair(int domain, int type, int protocol, int sv[2],
|
|||
int ret = socketpair(domain, type, protocol, sv);
|
||||
*ret_label = 0;
|
||||
if (ret == 0) {
|
||||
dfsan_set_label(0, sv, sizeof(sv));
|
||||
dfsan_set_label(0, sv, sizeof(*sv) * 2);
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue