diff options
author | Rodeo <[email protected]> | 2014-01-07 11:41:35 +0000 |
---|---|---|
committer | Rodeo <[email protected]> | 2014-01-07 11:41:35 +0000 |
commit | 5bf5ef4f102648396941e4a1d1ce4af36638d16b (patch) | |
tree | 5c6a30cf198e846c5893597e701417c74ea708af /contrib/ffmpeg/P01-solaris.patch | |
parent | 78d3ce52294d199cbf6f45d2372c2622589efaa7 (diff) |
parsecsv: always check result of malloc()
RebiewBoard #670.
Patch by icchan. Thanks!
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5957 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'contrib/ffmpeg/P01-solaris.patch')
-rw-r--r-- | contrib/ffmpeg/P01-solaris.patch | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/ffmpeg/P01-solaris.patch b/contrib/ffmpeg/P01-solaris.patch index 399aabc3a..fc0aeb287 100644 --- a/contrib/ffmpeg/P01-solaris.patch +++ b/contrib/ffmpeg/P01-solaris.patch @@ -1,13 +1,13 @@ diff --git a/configure b/configure -index 6ab04ae..1c8ab46 100755 +index e9fc08c..86ebc37 100755 --- a/configure +++ b/configure -@@ -3171,7 +3171,7 @@ EOF +@@ -3589,7 +3589,7 @@ EOF check_cc <<EOF || die "endian test failed" unsigned int endian = 'B' << 24 | 'I' << 16 | 'G' << 8 | 'E'; EOF -od -t x1 $TMPO | grep -q '42 *49 *47 *45' && enable bigendian +/usr/bin/tr -cd "BIGE" < $TMPO | grep -q 'B *I *G *E' && enable bigendian - if enabled alpha; then + check_inline_asm inline_asm_labels '"1:\n"' |