Commit 72e25cde authored by Rémi Duraffort's avatar Rémi Duraffort

Fix a memleak in ncurses interface.

parent aa6fd556
...@@ -1435,7 +1435,6 @@ static void mvnprintw( int y, int x, int w, const char *p_fmt, ... ) ...@@ -1435,7 +1435,6 @@ static void mvnprintw( int y, int x, int w, const char *p_fmt, ... )
mvhline( y, x + i_width, ' ', w - i_width ); mvhline( y, x + i_width, ' ', w - i_width );
} }
free( p_buf );
#else #else
if( i_len > w ) if( i_len > w )
{ {
...@@ -1466,6 +1465,7 @@ static void mvnprintw( int y, int x, int w, const char *p_fmt, ... ) ...@@ -1466,6 +1465,7 @@ static void mvnprintw( int y, int x, int w, const char *p_fmt, ... )
mvhline( y, x + i_len, ' ', w - i_len ); mvhline( y, x + i_len, ' ', w - i_len );
} }
#endif #endif
free( p_buf );
} }
static void MainBoxWrite( intf_thread_t *p_intf, int l, int x, const char *p_fmt, ... ) static void MainBoxWrite( intf_thread_t *p_intf, int l, int x, const char *p_fmt, ... )
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment