From 34b339c5913a55cb5bac8a502696fcd3f54aac0f Mon Sep 17 00:00:00 2001 From: root Date: Wed, 20 Jul 2011 23:12:48 +0000 Subject: Wed Jul 20 23:12:48 UTC 2011 --- testing/libtirpc/libtirpc-0.2.1-fortify.patch | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 testing/libtirpc/libtirpc-0.2.1-fortify.patch (limited to 'testing/libtirpc/libtirpc-0.2.1-fortify.patch') diff --git a/testing/libtirpc/libtirpc-0.2.1-fortify.patch b/testing/libtirpc/libtirpc-0.2.1-fortify.patch new file mode 100644 index 000000000..7375bf83e --- /dev/null +++ b/testing/libtirpc/libtirpc-0.2.1-fortify.patch @@ -0,0 +1,18 @@ +Index: libtirpc-0.2.1/src/getrpcport.c +=================================================================== +--- libtirpc-0.2.1.orig/src/getrpcport.c ++++ libtirpc-0.2.1/src/getrpcport.c +@@ -54,11 +54,11 @@ getrpcport(host, prognum, versnum, proto + + if ((hp = gethostbyname(host)) == NULL) + return (0); ++ if (hp->h_length != sizeof(addr.sin_addr.s_addr)) ++ return (0); + memset(&addr, 0, sizeof(addr)); + addr.sin_family = AF_INET; + addr.sin_port = 0; +- if (hp->h_length > sizeof(addr)) +- hp->h_length = sizeof(addr); + memcpy(&addr.sin_addr.s_addr, hp->h_addr, (size_t)hp->h_length); + /* Inconsistent interfaces need casts! :-( */ + return (pmap_getport(&addr, (u_long)prognum, (u_long)versnum, -- cgit v1.2.3-54-g00ecf