mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-02 23:01:42 +00:00
DIRECTOR: Assignment operator for InfoEntry struct
This commit is contained in:
parent
3460ee1132
commit
184d54708d
@ -60,6 +60,14 @@ struct InfoEntry {
|
||||
data = nullptr;
|
||||
}
|
||||
|
||||
InfoEntry &operator=(const InfoEntry &old) {
|
||||
free(data);
|
||||
len = old.len;
|
||||
data = (byte *)malloc(len);
|
||||
memcpy(data, old.data, len);
|
||||
return *this;
|
||||
}
|
||||
|
||||
Common::String readString(bool pascal = true) {
|
||||
Common::String res;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user