There is no need to print literal strings through "%s".
Only untrusted strings such as filenames need that.
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
sigset_t sigm;
i1 = sparc_regs.u_regs[U_REG_O1];
if (umove(tcp, i1, &si) < 0) {
- perror_msg("%s", "sigreturn: umove");
+ perror_msg("sigreturn: umove");
return 0;
}
long_to_sigset(si.si_mask, &sigm);
m_siginfo_t si;
sigset_t sigm;
if (ptrace(PTRACE_GETREGS, tcp->pid, (char *)®s, 0) < 0) {
- perror_msg("%s", "sigreturn: PTRACE_GETREGS");
+ perror_msg("sigreturn: PTRACE_GETREGS");
return 0;
}
sp = regs.regs[29];
long regs[PT_MAX+1];
sigset_t sigm;
if (ptrace(PTRACE_GETREGS, tcp->pid, NULL, (long)regs) < 0) {
- perror_msg("%s", "sigreturn: PTRACE_GETREGS");
+ perror_msg("sigreturn: PTRACE_GETREGS");
return 0;
}
if (umove(tcp, regs[PT_USP], &sc) < 0)
}
else if (errno != ESRCH) {
/* Shouldn't happen. */
- perror_msg("%s", "detach: ptrace(PTRACE_DETACH, ...)");
+ perror_msg("detach: ptrace(PTRACE_DETACH, ...)");
}
else if (my_tkill(tcp->pid, 0) < 0) {
if (errno != ESRCH)
- perror_msg("%s", "detach: checking sanity");
+ perror_msg("detach: checking sanity");
}
else if (!sigstop_expected && my_tkill(tcp->pid, SIGSTOP) < 0) {
if (errno != ESRCH)
- perror_msg("%s", "detach: stopping child");
+ perror_msg("detach: stopping child");
}
else
sigstop_expected = 1;
if (errno == ECHILD) /* Already gone. */
break;
if (errno != EINVAL) {
- perror_msg("%s", "detach: waiting");
+ perror_msg("detach: waiting");
break;
}
#endif /* __WALL */
/* No __WALL here. */
if (waitpid(tcp->pid, &status, 0) < 0) {
if (errno != ECHILD) {
- perror_msg("%s", "detach: waiting");
+ perror_msg("detach: waiting");
break;
}
#ifdef __WCLONE
/* If no processes, try clones. */
if (waitpid(tcp->pid, &status, __WCLONE) < 0) {
if (errno != ECHILD)
- perror_msg("%s", "detach: waiting");
+ perror_msg("detach: waiting");
break;
}
#endif /* __WCLONE */
}
ntid -= nerr;
if (ntid == 0) {
- perror_msg("%s", "attach: ptrace(PTRACE_ATTACH, ...)");
+ perror_msg("attach: ptrace(PTRACE_ATTACH, ...)");
droptcb(tcp);
continue;
}
} /* if (opendir worked) */
} /* if (-f) */
if (ptrace_attach_or_seize(tcp->pid) < 0) {
- perror_msg("%s", "attach: ptrace(PTRACE_ATTACH, ...)");
+ perror_msg("attach: ptrace(PTRACE_ATTACH, ...)");
droptcb(tcp);
continue;
}
errno = 0;
opcode = ptrace(PTRACE_PEEKTEXT, tcp->pid, (char *)(psw - sizeof(long)), 0);
if (errno) {
- perror_msg("%s", "peektext(psw-oneword)");
+ perror_msg("peektext(psw-oneword)");
return -1;
}
else if (errno != EINVAL && errno != ESRCH)
/* EINVAL or ESRCH could be seen if process is gone,
* all the rest is strange and should be reported. */
- perror_msg("%s", "process_vm_readv");
+ perror_msg("process_vm_readv");
} else {
- perror_msg("process_vm_readv: short read (%d < %d)", r, len);
+ error_msg("process_vm_readv: short read (%d < %d)", r, len);
}
}
/* EINVAL or ESRCH could be seen
* if process is gone, all the rest
* is strange and should be reported. */
- perror_msg("%s", "process_vm_readv");
+ perror_msg("process_vm_readv");
goto vm_readv_didnt_work;
}
if (memchr(local[0].iov_base, '\0', r))