File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
2
2
Upstream-Name: Pion
3
3
Source: https://github.com/pion/
4
4
5
- Files: README.md DESIGN.md **/README.md AUTHORS.txt renovate.json go.mod go.sum **/go.mod **/go.sum .eslintrc.json package.json examples/examples .json
5
+ Files: README.md DESIGN.md **/README.md AUTHORS.txt renovate.json go.mod go.sum **/go.mod **/go.sum .eslintrc.json package.json examples.json sfu-ws/flutter/.gitignore sfu-ws/flutter/pubspec.yaml
6
6
Copyright: 2023 The Pion community <https://pion.ly>
7
7
License: MIT
8
8
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ void gstreamer_receive_stop_pipeline(GstElement *pipeline) { gst_element_set_sta
57
57
void gstreamer_receive_push_buffer (GstElement * pipeline , void * buffer , int len ) {
58
58
GstElement * src = gst_bin_get_by_name (GST_BIN (pipeline ), "src" );
59
59
if (src != NULL ) {
60
- gpointer p = g_memdup (buffer , len );
60
+ gpointer p = g_memdup2 (buffer , len );
61
61
GstBuffer * buffer = gst_buffer_new_wrapped (p , len );
62
62
gst_app_src_push_buffer (GST_APP_SRC (src ), buffer );
63
63
gst_object_unref (src );
You can’t perform that action at this time.
0 commit comments