We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61b0943 commit 0dc76dfCopy full SHA for 0dc76df
gear-lib/libmedia-io/libmedia-io.c
@@ -87,6 +87,8 @@ struct media_packet *media_packet_copy(const struct media_packet *src)
87
printf("unsupport copy %d media packet\n", src->type);
88
break;
89
}
90
+ if (dst)
91
+ dst->type = src->type;
92
return dst;
93
94
gear-lib/libuac/pulseaudio.c
@@ -719,6 +719,7 @@ static void uac_pa_close(struct uac_ctx *uac)
719
720
pa_threaded_mainloop_stop(c->pa_mainloop);
721
pa_threaded_mainloop_free(c->pa_mainloop);
722
+ free(uac->conf.device);
723
free(c);
724
725
0 commit comments