mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
bugfix: Strdup the generated mac address
This commit is contained in:
parent
32a11dc28d
commit
2d05b6e5e8
1 changed files with 9 additions and 8 deletions
|
@ -248,7 +248,8 @@ const char *CreateRandMAC() {
|
|||
randStream << ':'; //we need a : between every octet
|
||||
}
|
||||
}
|
||||
return randStream.str().c_str(); //no need for creating a new string, just return this
|
||||
// It's ok to strdup, this runs once and will be freed by exiting the process anyway
|
||||
return strdup(randStream.str().c_str()); //no need for creating a new string, just return this
|
||||
}
|
||||
|
||||
static int DefaultNumWorkers() {
|
||||
|
|
Loading…
Add table
Reference in a new issue