diff options
-rw-r--r-- | include/xine/xineutils.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/xine/xineutils.h b/include/xine/xineutils.h index 3a997d2c2..bab986aa2 100644 --- a/include/xine/xineutils.h +++ b/include/xine/xineutils.h @@ -146,7 +146,7 @@ void *xine_xcalloc(size_t nmemb, size_t size) XINE_MALLOC XINE_PROTECTED; * Free allocated memory and set pointer to NULL * @param ptr Pointer to the pointer to the memory block which should be freed. */ -static inline void _x_freep(void *ptr) XINE_PROTECTED { +static inline void _x_freep(void *ptr) { void **p = (void **)ptr; free (*p); *p = NULL; |