Home
last modified time | relevance | path

Searched +full:failmalloc +full:- +full:1 (Results 1 – 7 of 7) sorted by relevance

/third_party/libexif/
D.travis.yml8 # Set to 10 instead of 1 to avoid problems when the most recent commits have [skip ci]
16 - autopoint
21 - CONFIG=normal
22 - CONFIG=c90
23 - CONFIG=stackprotect
24 - CONFIG=disable-nls
26 - MAKEFLAGS='-j 2'
29 - clang
30 - gcc
33 - linux
[all …]
/third_party/libexif/m4m/
Dfailmalloc.m44 LT_INIT([win32-dll])
7 AC_ARG_WITH(failmalloc, [ --with-failmalloc=PATH use Failmalloc for tests], [ optwith
8 failmalloc_requested=1
9 if test x"$withval" = "x" -o x"$withval" = x"yes"; then
16 path_provided=1
23 dnl Skip the check if we're cross-compiling, unless the user explicitly requested it
24 if test x"$cross_compiling" = x"no" -o x"$failmalloc_requested" = x"1"; then
32 if test -z "$FAILMALLOC_PATH" -a -n "$path_provided"; then
38 AC_MSG_CHECKING([for failmalloc])
40 if test -n "$FAILMALLOC_PATH" -a -f "$FAILMALLOC_PATH"; then
[all …]
/third_party/libexif/test/
Dcheck-failmalloc.sh2 # Use Failmalloc to test behaviour in the face of out-of-memory conditions.
3 # The test runs a binary multiple times while configuring Failmalloc to fail a
5 # due to segfaults. See https://www.nongnu.org/failmalloc/
15 if [ "$1" = "-v" ] ; then
16 VERBOSE=1
25 if [ -e .libs/lt-test-value ]; then
27 # would be interfered with by libfailmalloc. Instead, use the special lt-
29 BINARY_PREFIX=".libs/lt-"
33 # FIXME: auto-determine #iterations by comparing the output of each run
37 iterations="$1"
[all …]
/third_party/nghttp2/
Dconfigure.ac1 dnl nghttp2 - HTTP/2 C Library
25 dnl https://www.gnu.org/software/automake/manual/html_node/Flag-Variables-Ordering.html
28 AC_INIT([nghttp2], [1.62.1], [t-tujikawa@users.sourceforge.net])
41 AM_INIT_AUTOMAKE([subdir-objects tar-pax])
46 dnl https://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
48 AC_SUBST(LT_REVISION, 1)
51 major=`echo $PACKAGE_VERSION |cut -d. -f1 | sed -e "s/[^0-9]//g"`
52 minor=`echo $PACKAGE_VERSION |cut -d. -f2 | sed -e "s/[^0-9]//g"`
53 patch=`echo $PACKAGE_VERSION |cut -d. -f3 | cut -d- -f1 | sed -e "s/[^0-9]//g"`
59 dnl Checks for command-line options
[all …]
DCMakeLists.txt1 # nghttp2 - HTTP/2 C Library
26 # XXX using 1.8.90 instead of 1.9.0-DEV
27 project(nghttp2 VERSION 1.62.1)
30 # https://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
32 set(LT_REVISION 1)
38 math(EXPR LT_SOVERSION "${LT_CURRENT} - ${LT_AGE}")
48 # default). These strings are presented in cmake-gui.
59 # Auto-detection of features that can be toggled
68 find_package(OpenSSL 1.1.1)
72 set(HAVE_LIBNGTCP2_CRYPTO_QUICTLS 1)
[all …]
/third_party/nghttp2/tests/
Dfailmalloc_test.c2 * nghttp2 - HTTP/2 C Library
49 "/failmalloc", tests, NULL, 1, MUNIT_SUITE_OPTION_NONE,
66 buf = &bufs->head->buf; in data_feed_init()
69 assert(data_length <= sizeof(df->data)); in data_feed_init()
70 memcpy(df->data, buf->pos, data_length); in data_feed_init()
71 df->datamark = df->data; in data_feed_init()
72 df->datalimit = df->data + data_length; in data_feed_init()
89 data_feed *df = ((my_user_data *)user_data)->df; in data_feed_recv_callback()
90 size_t avail = (size_t)(df->datalimit - df->datamark); in data_feed_recv_callback()
95 memcpy(data, df->datamark, wlen); in data_feed_recv_callback()
[all …]
/third_party/python/Misc/
DHISTORY2 --------------
13 Release date: 2017-01-17
21 Release date: 2017-01-02
24 -----------------
26 - Issue #28648: Fixed crash in Py_DecodeLocale() in debug build on Mac OS X
29 - Issue #28426: Fixed potential crash in PyUnicode_AsDecodedObject() in debug
33 -------
35 - Issue #28563: Fixed possible DoS and arbitrary code execution when handle
39 - In the curses module, raise an error if window.getstr() or window.instr() is
42 - Issue #27783: Fix possible usage of uninitialized memory in operator.methodcaller.
[all …]