Remove std::strcpy
Some checks are pending
Generate Translation Template / Generate Translation Template (push) Waiting to run
Build RPCS3 / RPCS3 Linux ${{ matrix.os }} ${{ matrix.compiler }} (/rpcs3/.ci/build-linux-aarch64.sh, gcc, rpcs3/rpcs3-ci-jammy-aarch64:1.7, ubuntu-24.04-arm) (push) Waiting to run
Build RPCS3 / RPCS3 Linux ${{ matrix.os }} ${{ matrix.compiler }} (/rpcs3/.ci/build-linux.sh, gcc, rpcs3/rpcs3-ci-jammy:1.7, ubuntu-24.04) (push) Waiting to run
Build RPCS3 / RPCS3 Linux ${{ matrix.os }} ${{ matrix.compiler }} (a1d35836e8d45bfc6f63c26f0a3e5d46ef622fe1, rpcs3/rpcs3-binaries-linux-arm64, /rpcs3/.ci/build-linux-aarch64.sh, clang, rpcs3/rpcs3-ci-jammy-aarch64:1.7, ubuntu-24.04-arm) (push) Waiting to run
Build RPCS3 / RPCS3 Linux ${{ matrix.os }} ${{ matrix.compiler }} (d812f1254a1157c80fd402f94446310560f54e5f, rpcs3/rpcs3-binaries-linux, /rpcs3/.ci/build-linux.sh, clang, rpcs3/rpcs3-ci-jammy:1.7, ubuntu-24.04) (push) Waiting to run
Build RPCS3 / RPCS3 Mac ${{ matrix.name }} (51ae32f468089a8169aaf1567de355ff4a3e0842, rpcs3/rpcs3-binaries-mac, .ci/build-mac.sh, Intel) (push) Waiting to run
Build RPCS3 / RPCS3 Mac ${{ matrix.name }} (8e21bdbc40711a3fccd18fbf17b742348b0f4281, rpcs3/rpcs3-binaries-mac-arm64, .ci/build-mac-arm64.sh, Apple Silicon) (push) Waiting to run
Build RPCS3 / RPCS3 Windows (push) Waiting to run
Build RPCS3 / RPCS3 Windows Clang (win64, clang, clang64) (push) Waiting to run
Build RPCS3 / RPCS3 FreeBSD (push) Waiting to run

This commit is contained in:
Elad 2025-11-02 13:32:49 +02:00
parent dc22584f72
commit ede8382c6a
4 changed files with 5 additions and 4 deletions

View file

@ -25,6 +25,7 @@
#include <string> #include <string>
#include <vector> #include <vector>
#include <charconv> #include <charconv>
#include <string_view>
std::string to_hex(std::uint64_t value, bool prfx = true) std::string to_hex(std::uint64_t value, bool prfx = true)
{ {
@ -85,7 +86,7 @@ int main(int argc, char* argv[])
// Decode address and try to find the object // Decode address and try to find the object
std::uint64_t addr = -1; std::uint64_t addr = -1;
std::from_chars(arg.data() + strlen("--start-address=0x"), arg.data() + arg.size(), addr, 16); std::from_chars(arg.data() + ("--start-address=0x"sv).size(), arg.data() + arg.size(), addr, 16);
for (int j = 0; j < 0x100'0000; j++) for (int j = 0; j < 0x100'0000; j++)
{ {

View file

@ -646,7 +646,7 @@ namespace np
for (; it != end; ++it) for (; it != end; ++it)
{ {
strcpy(ifr.ifr_name, it->ifr_name); strcpy_trunc(ifr.ifr_name, it->ifr_name);
if (ioctl(sock, SIOCGIFFLAGS, &ifr) == 0) if (ioctl(sock, SIOCGIFFLAGS, &ifr) == 0)
{ {
if (!(ifr.ifr_flags & IFF_LOOPBACK)) if (!(ifr.ifr_flags & IFF_LOOPBACK))

View file

@ -169,7 +169,7 @@ bool gui_pad_thread::init()
usetup.id.bustype = BUS_USB; usetup.id.bustype = BUS_USB;
usetup.id.vendor = 0x1234; usetup.id.vendor = 0x1234;
usetup.id.product = 0x1234; usetup.id.product = 0x1234;
std::strcpy(usetup.name, "RPCS3 GUI Input Device"); strcpy_trunc(usetup.name, "RPCS3 GUI Input Device"sv);
// The ioctls below will enable the device that is about to be created to pass events. // The ioctls below will enable the device that is about to be created to pass events.
CHECK_IOCTRL_RET(ioctl(m_uinput_fd, UI_SET_EVBIT, EV_KEY)); CHECK_IOCTRL_RET(ioctl(m_uinput_fd, UI_SET_EVBIT, EV_KEY));

View file

@ -253,7 +253,7 @@ namespace psf
if (indices[i].param_fmt == format::string) if (indices[i].param_fmt == format::string)
{ {
// Find null terminator // Find null terminator
value.resize(std::strlen(value.c_str())); value.resize(value.find_first_of('\0'));
} }
result.sfo.emplace(std::piecewise_construct, result.sfo.emplace(std::piecewise_construct,