mirror of
https://github.com/SFML/SFML.git
synced 2024-11-25 12:51:05 +08:00
Fixed undefined behavior of returned pointer
This commit is contained in:
parent
b3357eed2a
commit
3c429387f2
@ -62,19 +62,19 @@ namespace
|
||||
// Find the name of the current executable
|
||||
const char* findExecutableName()
|
||||
{
|
||||
char buffer[512];
|
||||
//Default fallback name
|
||||
const char* executableName = "sfml";
|
||||
static char buffer[512];
|
||||
std::size_t length = readlink("/proc/self/exe", buffer, sizeof(buffer));
|
||||
|
||||
if ((length > 0) && (length < sizeof(buffer)))
|
||||
{
|
||||
// Remove the path to keep the executable name only
|
||||
buffer[length] = '\0';
|
||||
return basename(buffer);
|
||||
}
|
||||
else
|
||||
{
|
||||
// Fallback name
|
||||
return "sfml";
|
||||
executableName = basename(buffer);
|
||||
}
|
||||
std::memcpy(buffer, executableName, std::strlen(executableName) + 1);
|
||||
return buffer;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user