https://github.com/torvalds/linux
Raw File
Tip revision: 5bd3a65f04f2f7bc5edd4e4dc156eaf982bbd900 authored by Jiecheng Wu on 07 August 2018, 07:58:03 UTC
conntrack.c: Add missing return value check to prevent nptr dereference.
Tip revision: 5bd3a65
cc-can-link.sh
#!/bin/sh
# SPDX-License-Identifier: GPL-2.0

cat << "END" | $@ -x c - -o /dev/null >/dev/null 2>&1
#include <stdio.h>
int main(void)
{
	printf("");
	return 0;
}
END
back to top