mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Merge pull request #7131 from lioncash/scempeg
sceMpeg: Remove an unnecessary if statement
This commit is contained in:
commit
c1084b6b93
1 changed files with 1 additions and 2 deletions
|
@ -846,8 +846,7 @@ public:
|
|||
memcpy(newstream, stream, size);
|
||||
memcpy(newstream + size, str, sz);
|
||||
// delete old stream
|
||||
if (stream)
|
||||
delete[] stream;
|
||||
delete[] stream;
|
||||
// replace with new stream
|
||||
stream = newstream;
|
||||
size = newsize;
|
||||
|
|
Loading…
Add table
Reference in a new issue