diff options
| author | Markus Mittendrein <git@maxmitti.tk> | 2019-03-16 17:24:23 +0100 |
|---|---|---|
| committer | Markus Mittendrein <git@maxmitti.tk> | 2019-03-16 17:24:23 +0100 |
| commit | 4dcffd1250df8dabc375464b0f1e6b4b2b49a3cc (patch) | |
| tree | d112b4791d04fc2e43f2ce3db7a5e5a8b2cc9603 /src | |
| parent | a885f84a89334ba7c903f5e31d31e9ca5497356f (diff) | |
| download | cc4group-4dcffd1250df8dabc375464b0f1e6b4b2b49a3cc.tar.gz cc4group-4dcffd1250df8dabc375464b0f1e6b4b2b49a3cc.zip | |
Fix MemoryManagement::Copy
Diffstat (limited to 'src')
| -rw-r--r-- | src/cc4group.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cc4group.c b/src/cc4group.c index f980183..a90a4e8 100644 --- a/src/cc4group.c +++ b/src/cc4group.c @@ -106,7 +106,7 @@ static bool cc4group_applyMemoryManagementStart(CC4Group_MemoryManagement const { return false; } - memcpy(copy, data, size); + memcpy(copy, *data, size); *data = copy; } return true; |
