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
make use of "make debug" target
git.mgm/mediaproxy-ng/2.1
Richard Fuchs
14 years ago
parent
7dc00bd258
commit
c75aecc282
1 changed files
with
6 additions
and
0 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+6
-0
daemon/obj.h
+ 6
- 0
daemon/obj.h
View File
@ -14,7 +14,11 @@
#
ifdef __DEBUG
#
define OBJ_DEBUG 1
#
else
#
define OBJ_DEBUG 0
#
define OBJ_DEBUG 0
#
endif
@ -151,7 +155,9 @@ static inline void __obj_put(void *p
#
endif
#
endif
if
(
o
-
>
free_func
)
if
(
o
-
>
free_func
)
o
-
>
free_func
(
o
)
;
o
-
>
free_func
(
o
)
;
#
if OBJ_DEBUG
o
-
>
magic
=
0
;
o
-
>
magic
=
0
;
#
endif
g_slice_free1
(
o
-
>
size
,
o
)
;
g_slice_free1
(
o
-
>
size
,
o
)
;
}
}
Write
Preview
Loading…
Cancel
Save