aboutsummaryrefslogtreecommitdiff
path: root/config-ml.in
diff options
context:
space:
mode:
authorTom de Vries <tdevries@suse.de>2022-07-14 08:19:00 +0200
committerTom de Vries <tdevries@suse.de>2022-07-14 08:19:00 +0200
commit4f92e10cda142fd1f213e01a53ca687e38cddf22 (patch)
tree66a773217c8249a6a6c890590f412521f0593fbe /config-ml.in
parent5f6c92298a9823335b3f857591020d6b1ec2e5d0 (diff)
downloadgdb-4f92e10cda142fd1f213e01a53ca687e38cddf22.zip
gdb-4f92e10cda142fd1f213e01a53ca687e38cddf22.tar.gz
gdb-4f92e10cda142fd1f213e01a53ca687e38cddf22.tar.bz2
[gdb/symtab] Fix data race in ~charset_vector
When doing: ... $ gdb ./outputs/gdb.ada/char_enum_unicode/foo -batch -ex "break foo.adb:26" ... with a gdb build with -fsanitize=thread I run into a data race: ... WARNING: ThreadSanitizer: data race (pid=30917) Write of size 8 at 0x7b0400004070 by main thread: #0 free <null> (libtsan.so.2+0x4c5e2) #1 xfree<char> gdbsupport/gdb-xfree.h:37 (gdb+0x650f17) #2 charset_vector::clear() gdb/charset.c:703 (gdb+0x651354) #3 charset_vector::~charset_vector() gdb/charset.c:697 (gdb+0x6512d3) #4 <null> <null> (libtsan.so.2+0x32643) #5 captured_main_1 gdb/main.c:1310 (gdb+0xa3975a) ... The problem is that we're freeing the charset_vector elements in the destructor, which may still be used by a worker thread. Fix this by not freeing the charset_vector elements in the destructor. Tested on x86_64-linux. Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=29311
Diffstat (limited to 'config-ml.in')
0 files changed, 0 insertions, 0 deletions