mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-05-28 22:21:26 +08:00
2008-02-05 Andrzej Zaborowski <balrogg@gmail.com>
* tracepoint.c (read_actions): Handle end-of-text indicator in action list properly. (Committed by Jim Blandy)
This commit is contained in:
@ -862,7 +862,10 @@ read_actions (struct tracepoint *t)
|
||||
line = gdb_readline (0);
|
||||
|
||||
if (!line)
|
||||
line = "end";
|
||||
{
|
||||
line = xstrdup ("end");
|
||||
printf_filtered ("end\n");
|
||||
}
|
||||
|
||||
linetype = validate_actionline (&line, t);
|
||||
if (linetype == BADLINE)
|
||||
|
Reference in New Issue
Block a user