commit | f90415e9600c5227131531c0ed11514a2d3bbe62 | [log] [tgz] |
---|---|---|
author | Andrii Nakryiko <andriin@fb.com> | Sun Oct 20 20:39:00 2019 -0700 |
committer | Daniel Borkmann <daniel@iogearbox.net> | Mon Oct 21 14:49:12 2019 +0200 |
tree | ef4141b3fcf60d3da65aa88e7c81490b8fe552f7 | |
parent | dd4436bb838338cfda253d7f012610a73e4078fd [diff] |
selftests/bpf: Make a copy of subtest name test_progs never created a copy of subtest name, rather just stored pointer to whatever string test provided. This is bad as that string might be freed or modified by the end of subtest. Fix this by creating a copy of given subtest name when subtest starts. Signed-off-by: Andrii Nakryiko <andriin@fb.com> Signed-off-by: Daniel Borkmann <daniel@iogearbox.net> Link: https://lore.kernel.org/bpf/20191021033902.3856966-6-andriin@fb.com