Blame gnulib/lib/memchr.valgrind

Packit Service a2ae7a
# Suppress a valgrind message about use of uninitialized memory in memchr().
Packit Service a2ae7a
Packit Service a2ae7a
# Copyright (C) 2009-2019 Free Software Foundation, Inc.
Packit Service a2ae7a
#
Packit Service a2ae7a
# This program is free software: you can redistribute it and/or modify
Packit Service a2ae7a
# it under the terms of the GNU Lesser General Public License as published by
Packit Service a2ae7a
# the Free Software Foundation; either version 2.1 of the License, or
Packit Service a2ae7a
# (at your option) any later version.
Packit Service a2ae7a
#
Packit Service a2ae7a
# This program is distributed in the hope that it will be useful,
Packit Service a2ae7a
# but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service a2ae7a
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit Service a2ae7a
# GNU Lesser General Public License for more details.
Packit Service a2ae7a
#
Packit Service a2ae7a
# You should have received a copy of the GNU Lesser General Public License
Packit Service a2ae7a
# along with this program.  If not, see <https://www.gnu.org/licenses/>.
Packit Service a2ae7a
Packit Service a2ae7a
# POSIX states that when the character is found, memchr must not read extra
Packit Service a2ae7a
# bytes in an overestimated length (for example, where memchr is used to
Packit Service a2ae7a
# implement strnlen).  However, we use a safe word read to provide a speedup.
Packit Service a2ae7a
{
Packit Service a2ae7a
    memchr-value4
Packit Service a2ae7a
    Memcheck:Value4
Packit Service a2ae7a
    fun:rpl_memchr
Packit Service a2ae7a
}
Packit Service a2ae7a
{
Packit Service a2ae7a
    memchr-value8
Packit Service a2ae7a
    Memcheck:Value8
Packit Service a2ae7a
    fun:rpl_memchr
Packit Service a2ae7a
}