Merge pull request #7615

9ca9f12 Fixed issues found by static analysis (SChernykh)
This commit is contained in:
luigi1111 2021-03-29 21:54:25 -04:00
commit eed63cef36
No known key found for this signature in database
GPG key ID: F4ACA0183641E010
3 changed files with 5 additions and 6 deletions

View file

@ -141,7 +141,6 @@ public:
rolling_median_t(rolling_median_t &&m)
{
free(data);
memcpy(this, &m, sizeof(rolling_median_t));
m.data = NULL;
}