mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-24 05:40:10 +00:00
fix gdb covs (#8036)
This commit is contained in:
parent
abaac71290
commit
277771156c
@ -1211,15 +1211,11 @@ static int r_core_rtr_gdb_run(RCore *core, int launch, const char *path) {
|
||||
debug_msg = true;
|
||||
path++;
|
||||
}
|
||||
while (*path && isspace (*path)) {
|
||||
path++;
|
||||
}
|
||||
if (!*path) {
|
||||
if (!(path = r_str_chop_ro (path)) || !*path) {
|
||||
eprintf ("gdbserver: Port not specified\n");
|
||||
return -1;
|
||||
}
|
||||
if (path && (p = atoi (path))) {
|
||||
if (p < 0 || p > 65535) {
|
||||
if (!(p = atoi (path)) || p < 0 || p > 65535) {
|
||||
eprintf ("gdbserver: Invalid port: %s\n", port);
|
||||
return -1;
|
||||
}
|
||||
@ -1228,22 +1224,14 @@ static int r_core_rtr_gdb_run(RCore *core, int launch, const char *path) {
|
||||
eprintf ("gdbserver: File not specified\n");
|
||||
return -1;
|
||||
}
|
||||
while (isspace (*file)) {
|
||||
file++;
|
||||
}
|
||||
if (!*file) {
|
||||
if (!(file = r_str_chop_ro (file)) || !*file) {
|
||||
eprintf ("gdbserver: File not specified\n");
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
if (file) {
|
||||
args = strchr (file, ' ');
|
||||
if (args) {
|
||||
*args++ = '\0';
|
||||
while (isspace (*args)) {
|
||||
args++;
|
||||
}
|
||||
} else {
|
||||
if (!(args = r_str_chop_ro (args))) {
|
||||
args = "";
|
||||
}
|
||||
} else {
|
||||
|
@ -1046,7 +1046,7 @@ int gdbr_send_qRcmd(libgdbr_t *g, const char *cmd) {
|
||||
if (!(buf = calloc (len, sizeof (char)))) {
|
||||
return -1;
|
||||
}
|
||||
strncpy (buf, "qRcmd,", 6);
|
||||
strcpy (buf, "qRcmd,");
|
||||
pack_hex (cmd, strlen (cmd), buf + 6);
|
||||
if (send_msg (g, buf) < 0) {
|
||||
free (buf);
|
||||
|
Loading…
Reference in New Issue
Block a user