linux-snps-arc.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] rt/tst-posix_spawn: fix random crash due to uninitialized var
@ 2018-12-21 20:10 Vineet Gupta
  0 siblings, 0 replies; only message in thread
From: Vineet Gupta @ 2018-12-21 20:10 UTC (permalink / raw)
  To: linux-snps-arc

Seen on ARC when it passed in 1 setup, but segv on other

| Path: /sd/arc_initramfs_hs_1812-gnu-2018.09-BIG/uClibc-ng-testsuite-Os/rt/tst-posix_spawn
| CPU: 1 PID: 3313 Comm: tst-posix_spawn Not tainted
| 4.19.0-00003-ga4e0cf751ad3 #108
|
| [ECR   ]: 0x00050100 => Invalid Read @ 0x00000000 by insn @ 0x20060c84
| [EFA   ]: 0x00000000
| [BLINK ]: 0x20060bf4
| [ERET  ]: 0x20060c84
|     @off 0x52c84 in [/lib/libuClibc-1.0.29.so]
|     VMA: 0x2000e000 to 0x20072000

Signed-off-by: Vineet Gupta <vgupta at synopsys.com>
---
 test/rt/tst-posix_spawn.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/test/rt/tst-posix_spawn.c b/test/rt/tst-posix_spawn.c
index 28b6500c8e57..45cd325063f8 100644
--- a/test/rt/tst-posix_spawn.c
+++ b/test/rt/tst-posix_spawn.c
@@ -26,6 +26,7 @@ void run_cmd(char *cmd)
     posix_spawnattr_setflags(&attrs, POSIX_SPAWN_SETPGROUP | POSIX_SPAWN_SETSIGDEF);
     posix_spawnattr_setpgroup(&attrs, 0);
     posix_spawnattr_setsigdefault(&attrs, &defsignals);
+    posix_spawn_file_actions_init(&actions);
 
     printf("Run command: %s\n", cmd);
     status = posix_spawn(&pid, "/bin/sh", &actions, &attrs, argv, environ);
-- 
2.7.4

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2018-12-21 20:10 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-12-21 20:10 [PATCH] rt/tst-posix_spawn: fix random crash due to uninitialized var Vineet Gupta

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).