This website works better with JavaScript.
Home
Explore
Help
Sign In
RuhNetConsulting
/
rtpengine
mirror of
https://github.com/sipwise/rtpengine
Watch
1
Star
1
Fork
0
Code
Issues
0
Projects
0
Releases
822
Wiki
Activity
Browse Source
MT#55283 fix double-free bug
fixes
#1688
Change-Id: If1a73381bae0d4f475237b65f0978c33e088cfb6
pull/1692/head
Richard Fuchs
2 years ago
parent
a92d79ecc3
commit
b3c9278f84
1 changed files
with
4 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+4
-1
recording-daemon/stream.c
+ 4
- 1
recording-daemon/stream.c
View File
@ -81,10 +81,13 @@ static void stream_handler(handler_t *handler) {
packet_process
(
stream
,
buf
,
ret
)
;
/
/
consumes
buf
else
free
(
buf
)
;
buf
=
NULL
;
}
pthread_mutex_unlock
(
&
stream
-
>
lock
)
;
free
(
buf
)
;
if
(
buf
)
free
(
buf
)
;
log_info_call
=
NULL
;
log_info_stream
=
NULL
;
}
Write
Preview
Loading…
Cancel
Save