https://github.com/torvalds/linux
Revision e51171019bb0e1f9fb57c25bd2e38ce652eaea27 authored by YOSHIFUJI Hideaki on 29 May 2008, 10:55:05 UTC, committed by YOSHIFUJI Hideaki on 04 June 2008, 19:02:30 UTC
Commit 7cbca67c073263c179f605bdbbdc565ab29d801d ("[IPV6]: Support
Source Address Selection API (RFC5014)") introduced NULL dereference
of asoc to sctp_v6_get_saddr in net/sctp/ipv6.c.
Pointed out by Johann Felix Soden <johfel@users.sourceforge.net>.

Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
1 parent 7dccf1f
Raw File
Tip revision: e51171019bb0e1f9fb57c25bd2e38ce652eaea27 authored by YOSHIFUJI Hideaki on 29 May 2008, 10:55:05 UTC
[SCTP]: Fix NULL dereference of asoc.
Tip revision: e511710
mkuboot.sh
#!/bin/bash

#
# Build U-Boot image when `mkimage' tool is available.
#

MKIMAGE=$(type -path "${CROSS_COMPILE}mkimage")

if [ -z "${MKIMAGE}" ]; then
	MKIMAGE=$(type -path mkimage)
	if [ -z "${MKIMAGE}" ]; then
		# Doesn't exist
		echo '"mkimage" command not found - U-Boot images will not be built' >&2
		exit 0;
	fi
fi

# Call "mkimage" to create U-Boot image
${MKIMAGE} "$@"
back to top