Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
fd87ddfa
Commit
fd87ddfa
authored
Apr 17, 2023
by
Eric Pouech
Committed by
Alexandre Julliard
Apr 18, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winedbg: Let 'break symbol : line' command work again.
Signed-off-by:
Eric Pouech
<
epouech@codeweavers.com
>
parent
fe693a70
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
2 deletions
+11
-2
break.c
programs/winedbg/break.c
+11
-2
No files found.
programs/winedbg/break.c
View file @
fd87ddfa
...
...
@@ -340,8 +340,17 @@ void break_add_break_from_lineno(const char *filename, int lineno, BOOL swbp)
if
(
bkln
.
addr
.
Offset
)
break_add_break
(
&
bkln
.
addr
,
TRUE
,
swbp
);
else
dbg_printf
(
"Unknown line number
\n
"
"(either out of file, or no code at given line number)
\n
"
);
{
/* winedbg's lexer can't tell in 'break foo : 3' whether foo shall be interpreted
* as a debuggee symbol or as a debuggee source file.
* Try now symbol since source file failed.
*/
if
(
filename
)
break_add_break_from_id
(
filename
,
lineno
,
swbp
);
else
dbg_printf
(
"Unknown line number
\n
"
"(either out of file, or no code at given line number)
\n
"
);
}
}
/***********************************************************************
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment