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
TT#111150 fix wrong allocation size being used
Change-Id: I2941de908eb9694317afc9dee0526d8687b1c6e0
pull/1262/head
Richard Fuchs
5 years ago
parent
2057d0a367
commit
92e39597cb
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
lib/loglib.c
+ 1
- 1
lib/loglib.c
View File
@ -251,7 +251,7 @@ static void log_limiter_entry_free(void *p) {
struct
log_limiter_entry
*
lle
=
p
;
free
(
lle
-
>
prefix
)
;
free
(
lle
-
>
msg
)
;
g_slice_free1
(
sizeof
(
lle
)
,
lle
)
;
g_slice_free1
(
sizeof
(
*
lle
)
,
lle
)
;
}
void
log_init
(
const
char
*
handle
)
{
Write
Preview
Loading…
Cancel
Save