mirror of
https://gitlab.xiph.org/xiph/icecast-server.git
synced 2024-12-04 14:46:30 -05:00
Replaced usage of sprintf() with snprintf(). Also exported size of key printer's buffer in avl/.
svn path=/icecast/trunk/avl/; revision=18771
This commit is contained in:
parent
3d504e9e6c
commit
af068a72a6
@ -1074,7 +1074,7 @@ static char balance_chars[3] = {'\\', '-', '/'};
|
||||
static int
|
||||
default_key_printer (char * buffer, void * key)
|
||||
{
|
||||
return sprintf (buffer, "%p", key);
|
||||
return snprintf (buffer, AVL_KEY_PRINTER_BUFLEN, "%p", key);
|
||||
}
|
||||
|
||||
/*
|
||||
@ -1116,7 +1116,7 @@ print_node (avl_key_printer_fun_type key_printer,
|
||||
avl_node * node,
|
||||
link_node * link)
|
||||
{
|
||||
char buffer[256];
|
||||
char buffer[AVL_KEY_PRINTER_BUFLEN];
|
||||
unsigned int width;
|
||||
width = key_printer (buffer, node->key);
|
||||
|
||||
|
@ -11,6 +11,8 @@
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#define AVL_KEY_PRINTER_BUFLEN (256)
|
||||
|
||||
#ifndef NO_THREAD
|
||||
#include "thread/thread.h"
|
||||
#else
|
||||
|
Loading…
Reference in New Issue
Block a user