From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail.windriver.com ([147.11.1.11]) by linuxtogo.org with esmtp (Exim 4.72) (envelope-from ) id 1SrDB6-00060N-CK for Openembedded-core@lists.openembedded.org; Tue, 17 Jul 2012 21:11:24 +0200 Received: from ALA-HCA.corp.ad.wrs.com (ala-hca [147.11.189.40]) by mail.windriver.com (8.14.5/8.14.3) with ESMTP id q6HG6e5m002939 (version=TLSv1/SSLv3 cipher=AES128-SHA bits=128 verify=FAIL) for ; Tue, 17 Jul 2012 09:06:40 -0700 (PDT) Received: from [128.224.147.212] (128.224.147.212) by ALA-HCA.corp.ad.wrs.com (147.11.189.50) with Microsoft SMTP Server (TLS) id 14.1.255.0; Tue, 17 Jul 2012 09:06:39 -0700 Message-ID: <50058D26.1060004@windriver.com> Date: Tue, 17 Jul 2012 12:04:54 -0400 From: Aws Ismail Organization: Wind River Systems User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:12.0) Gecko/20120430 Thunderbird/12.0.1 MIME-Version: 1.0 To: oe-core list X-Originating-IP: [128.224.147.212] Subject: [PATCH] Fix for psplash segmentation fault X-BeenThere: openembedded-core@lists.openembedded.org X-Mailman-Version: 2.1.11 Precedence: list Reply-To: Aws Ismail , Patches and discussions about the oe-core layer List-Id: Patches and discussions about the oe-core layer List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Jul 2012 19:11:25 -0000 Content-Type: text/plain; charset="ISO-8859-1"; format=flowed Content-Transfer-Encoding: 7bit Fix psplash segmentation fault This fixes the segmentation fault when calling: psplash -a The -a option requires a rotation angle to be given and if it is missing then the user is shown the correct usage. Signed-off-by: Aws Ismail diff --git a/meta/recipes-core/psplash/files/psplash-fix-angle-argv-segfault.patch b/meta/recipes-core/psplash/files/psplash-fix-angle-argv-s new file mode 100644 index 0000000..797fe48 --- /dev/null +++ b/meta/recipes-core/psplash/files/psplash-fix-angle-argv-segfault.patch @@ -0,0 +1,27 @@ +Fix psplash segmentation fault + +This fixes the segmentation fault when calling: +psplash -a + +The -a option requires a rotation angle to be given +and if it is missing then the user is shown the correct usage. + +From: git://git.yoctoproject.org/psplash + +Upstream-Status: Submitted + +Signed-off-by: Aws Ismail + +diff --git a/psplash.c b/psplash.c +index 0158628..09cf0d0 100644 +--- a/psplash.c ++++ b/psplash.c +@@ -219,7 +219,7 @@ main (int argc, char** argv) + + if (!strcmp(argv[i],"-a") || !strcmp(argv[i],"--angle")) + { +- if (++i > argc) goto fail; ++ if (++i >= argc) goto fail; + angle = atoi(argv[i]); + continue; + } diff --git a/meta/recipes-core/psplash/psplash_git.bb b/meta/recipes-core/psplash/psplash_git.bb index 0d88a60..06f8a9c 100644 --- a/meta/recipes-core/psplash/psplash_git.bb +++ b/meta/recipes-core/psplash/psplash_git.bb @@ -11,6 +11,7 @@ PR = "r2" SRC_URI = "git://git.yoctoproject.org/${BPN};protocol=git \ file://psplash-init \ + file://psplash-fix-angle-argv-segfault.patch \ ${SPLASH_IMAGES}" SPLASH_IMAGES = "file://psplash-poky-img.h;outsuffix=default"