Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2023-07-01 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2023-06-30 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2023-06-29 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2023-06-28 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2023-06-27 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2023-06-26 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2023-06-25 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2023-06-24 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2023-06-23 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2023-06-22 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2023-06-21 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2023-06-20 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2023-06-19 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2023-06-18 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2023-06-17 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2023-06-16 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2023-06-15 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2023-06-14 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2023-06-13 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2023-06-12 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2023-06-11 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2023-06-10 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2023-06-09 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2023-06-08 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2023-06-07 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2023-06-06 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2023-06-05 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2023-06-04 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2023-06-03 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2023-06-02 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2023-06-01 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2023-05-31 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2023-05-30 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2023-05-29 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2023-05-28 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2023-05-27 | Bump GDB's version number to 13.2.90.DATE-git. | Joel Brobecker | 2 | -2/+2 | |
This commit changes gdb/version.in to 13.2.90.DATE-git. This commit also makes the following changes in gdb/testsuite: * gdb.base/default.exp: Change $_gdb_minor to 3. | |||||
2023-05-27 | Set GDB version number to 13.2.gdb-13.2-release | Joel Brobecker | 1 | -1/+1 | |
This commit changes gdb/version.in to 13.2. | |||||
2023-05-27 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2023-05-26 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2023-05-25 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2023-05-24 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2023-05-23 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2023-05-22 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2023-05-21 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2023-05-20 | gdb: fix post-hook execution for remote targets | Jan Vrany | 1 | -1/+3 | |
Commit b5661ff2 ("gdb: fix possible use-after-free when executing commands") attempted to fix possible use-after-free in case command redefines itself. Commit 37e5833d ("gdb: fix command lookup in execute_command ()") updated the previous fix to handle subcommands as well by using the original command string to lookup the command again after its execution. This fixed the test in gdb.base/define.exp but it turned out that it does not work (at least) for "target remote" and "target extended-remote". The problem is that the command buffer P passed to execute_command () gets overwritten in dont_repeat () while executing "target remote" command itself: #0 dont_repeat () at top.c:822 #1 0x000055555730982a in target_preopen (from_tty=1) at target.c:2483 #2 0x000055555711e911 in remote_target::open_1 (name=0x55555881c7fe ":1234", from_tty=1, extended_p=0) at remote.c:5946 #3 0x000055555711d577 in remote_target::open (name=0x55555881c7fe ":1234", from_tty=1) at remote.c:5272 #4 0x00005555573062f2 in open_target (args=0x55555881c7fe ":1234", from_tty=1, command=0x5555589d0490) at target.c:853 #5 0x0000555556ad22fa in cmd_func (cmd=0x5555589d0490, args=0x55555881c7fe ":1234", from_tty=1) at cli/cli-decode.c:2737 #6 0x00005555573487fd in execute_command (p=0x55555881c802 "4", from_tty=1) at top.c:688 Therefore the second call to lookup_cmd () at line 697 fails to find command because the original command string is gone. This commit addresses this particular problem by creating a *copy* of original command string for the sole purpose of using it after command execution to lookup the command again. It may not be the most efficient way but it's safer given that command buffer is shared and overwritten in hard-to-foresee situations. Tested on x86_64-linux. PR 30249 Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=30249 Approved-By: Tom Tromey <tom@tromey.com> (cherry picked from commit b69378ced6a2db6adfbea9974a246a65d931bab2) | |||||
2023-05-20 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2023-05-19 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2023-05-18 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2023-05-17 | Automatic date update in version.in | GDB Administrator | 1 | -1/+1 | |
2023-05-16 | gdbserver/linux-low.cc: Fix a typo in ternary operator | Khem Raj | 1 | -1/+1 | |
Signed-off-by: Khem Raj <raj.khem@gmail.com> (cherry picked from commit 2e977d9901393ea1bacbe1896af0929e968bc811) Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=30450 |