public inbox for kbd@lists.linux.dev
 help / color / mirror / Atom feed
* [kbd] [Lint][Bug report] src/openvt.c:386: 'pid' may be used uninitialized
@ 2019-06-11 18:20 Vladislav Ivanishin
  2019-06-20  8:59 ` Alexey Gladkov
  2019-07-11 18:03 ` Vladislav Ivanishin
  0 siblings, 2 replies; 4+ messages in thread
From: Vladislav Ivanishin @ 2019-06-11 18:20 UTC (permalink / raw)
  To: kbd

Hi,

I've found this bug using a static analyzer (slightly improved GCC).

Consider variable `pid` in function main from src/openvt.c:

src/openvt.c:166:       int opt, pid, i;
src/openvt.c:303:       if (direct_exec || ((pid = fork()) == 0)) {
src/openvt.c:386:       if (pid < 0)
src/openvt.c:393:               waitpid(pid, &retval, 0);

If direct_exec is TRUE, then pid doesn't get initialized, but it is used
outside the conditional regardless of that.

-- 
Vlad


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2019-07-11 19:22 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-06-11 18:20 [kbd] [Lint][Bug report] src/openvt.c:386: 'pid' may be used uninitialized Vladislav Ivanishin
2019-06-20  8:59 ` Alexey Gladkov
2019-07-11 18:03 ` Vladislav Ivanishin
2019-07-11 19:22   ` Alexey Gladkov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox