Re: [PATCH] weston-launch: Fix failure to exec weston due to initalized argv values

2013-05-22 Thread Kristian Høgsberg
On Wed, May 22, 2013 at 10:55:33PM +0300, Ander Conselvan de Oliveira wrote: > From: Ander Conselvan de Oliveira > > The array of arguments supplied to execv must be NULL terminated. If > unitialized values are used as pointers the exec call may fail with a > EFAULT error ("Bad address"). Thanks

[PATCH] weston-launch: Fix failure to exec weston due to initalized argv values

2013-05-22 Thread Ander Conselvan de Oliveira
From: Ander Conselvan de Oliveira The array of arguments supplied to execv must be NULL terminated. If unitialized values are used as pointers the exec call may fail with a EFAULT error ("Bad address"). https://bugs.freedesktop.org/show_bug.cgi?id=64874 --- src/weston-launch.c |5 +++-- 1 f