From: Florian Krohm Date: Mon, 21 Jan 2013 20:38:54 +0000 (+0000) Subject: Remove pointless test. vts->ts is an array and cannot be NULL. X-Git-Tag: svn/VALGRIND_3_9_0~425 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e0685bc47aff821b63aa7980afe39ee26995bb81;p=thirdparty%2Fvalgrind.git Remove pointless test. vts->ts is an array and cannot be NULL. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@13256 --- diff --git a/helgrind/libhb_core.c b/helgrind/libhb_core.c index 1b71e3f9ac..46e1378431 100644 --- a/helgrind/libhb_core.c +++ b/helgrind/libhb_core.c @@ -1935,7 +1935,6 @@ static Bool is_sane_VTS ( VTS* vts ) UWord i, n; ScalarTS *st1, *st2; if (!vts) return False; - if (!vts->ts) return False; if (vts->usedTS > vts->sizeTS) return False; n = vts->usedTS; if (n == 1) {