From 01c1421270ae0c14a6547d7025137d36f3e98b0e Mon Sep 17 00:00:00 2001 From: Scott Garman Date: Sat, 22 Dec 2012 21:52:27 -0800 Subject: psplash: new patch to fix segfault This fixes a segmentation fault when passing -a without an argument. Fixes [YOCTO #2903] (From OE-Core rev: f5b8ba5e51ac41cf375119a88083617f667a85d5) Signed-off-by: Scott Garman Signed-off-by: Richard Purdie --- .../files/psplash_fix_bad_arg_segfault.patch | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 meta/recipes-core/psplash/files/psplash_fix_bad_arg_segfault.patch (limited to 'meta/recipes-core/psplash/files/psplash_fix_bad_arg_segfault.patch') diff --git a/meta/recipes-core/psplash/files/psplash_fix_bad_arg_segfault.patch b/meta/recipes-core/psplash/files/psplash_fix_bad_arg_segfault.patch new file mode 100644 index 0000000000..f69c8a2d5e --- /dev/null +++ b/meta/recipes-core/psplash/files/psplash_fix_bad_arg_segfault.patch @@ -0,0 +1,22 @@ +Fix segmentation fault when passing -a without angle value. + +When psplash -a is called instead of psplash -a, it will +cause a segmentation fault by calling an out of bound argv[]. + +Upstream-Status: Accepted +Needed for denzil since we're not upgrading the recipe. + +Signed-off-by: Scott Garman + +diff -urN git.orig/psplash.c git/psplash.c +--- git.orig/psplash.c 2012-12-22 21:28:05.830631789 -0800 ++++ git/psplash.c 2012-12-22 21:29:54.962633330 -0800 +@@ -219,7 +219,7 @@ + + if (!strcmp(argv[i],"-a") || !strcmp(argv[i],"--angle")) + { +- if (++i > argc) goto fail; ++ if (++i >= argc) goto fail; + angle = atoi(argv[i]); + continue; + } -- cgit v1.2.3-54-g00ecf