0
0
mirror of https://github.com/obsproject/obs-studio.git synced 2024-09-20 13:08:50 +02:00

Merge pull request #2598 from sorayuki/bugfix/rtmp-custom-memleak

rtmp-services: Fix memory leak when updating rtmp-custom-service.
This commit is contained in:
Richard Stanway 2020-04-10 00:45:43 +02:00 committed by GitHub
commit 9023a57afc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,6 +18,8 @@ static void rtmp_custom_update(void *data, obs_data_t *settings)
bfree(service->server);
bfree(service->key);
bfree(service->username);
bfree(service->password);
service->server = bstrdup(obs_data_get_string(settings, "server"));
service->key = bstrdup(obs_data_get_string(settings, "key"));