summaryrefslogtreecommitdiffstats
path: root/crypto/openssl/crypto/aes
diff options
context:
space:
mode:
authordelphij <delphij@FreeBSD.org>2015-02-25 05:56:16 +0000
committerdelphij <delphij@FreeBSD.org>2015-02-25 05:56:16 +0000
commitb69ba8fe10a0df78165b9e34091ed7cadb989de2 (patch)
tree0d1cd5f4c2b24bd9f8b8387ba6ad41aeb8b5d8e4 /crypto/openssl/crypto/aes
parent02d2873b419d69120c7ee1b98d152a5c0931f043 (diff)
downloadFreeBSD-src-b69ba8fe10a0df78165b9e34091ed7cadb989de2.zip
FreeBSD-src-b69ba8fe10a0df78165b9e34091ed7cadb989de2.tar.gz
Fix integer overflow in IGMP protocol. [SA-15:04]
Fix vt(4) crash with improper ioctl parameters. [EN-15:01] Updated base system OpenSSL to 1.0.1l. [EN-15:02] Fix freebsd-update libraries update ordering issue. [EN-15:03] Approved by: so
Diffstat (limited to 'crypto/openssl/crypto/aes')
-rwxr-xr-xcrypto/openssl/crypto/aes/asm/aes-mips.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/openssl/crypto/aes/asm/aes-mips.pl b/crypto/openssl/crypto/aes/asm/aes-mips.pl
index e523954..537c8d3 100755
--- a/crypto/openssl/crypto/aes/asm/aes-mips.pl
+++ b/crypto/openssl/crypto/aes/asm/aes-mips.pl
@@ -70,7 +70,7 @@ $pf = ($flavour =~ /nubi/i) ? $t0 : $t2;
#
######################################################################
-$big_endian=(`echo MIPSEL | $ENV{CC} -E -P -`=~/MIPSEL/)?1:0;
+$big_endian=(`echo MIPSEL | $ENV{CC} -E -`=~/MIPSEL/)?1:0 if ($ENV{CC});
for (@ARGV) { $output=$_ if (/^\w[\w\-]*\.\w+$/); }
open STDOUT,">$output";
OpenPOWER on IntegriCloud