Commit e6184388 authored by Yukihiro "Matz" Matsumoto's avatar Yukihiro "Matz" Matsumoto

Merge pull request #2681 from sdottaka/mrdb-break-windows

mrdb: fix that break command cannot handle Windows paths
parents 10e9a1a1 80a742df
......@@ -256,7 +256,7 @@ parse_breakcommand(mrdb_state *mrdb, const char **file, uint32_t *line, char **c
}
args = mrdb->words[1];
if((body = strchr(args, ':')) == NULL) {
if((body = strrchr(args, ':')) == NULL) {
body = args;
type = check_bptype(body);
} else {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment