Changeset 0274be8790164dccf71b9f4574b57a47e4a88c70
- Timestamp:
- 12/03/08 12:07:43
(7 months ago)
- Author:
- Rémi Duraffort <ivoire@videolan.org>
- git-committer:
- Rémi Duraffort <ivoire@videolan.org> 1205320063 +0100
- git-parent:
[7326fad1f18a82b58db09d0a0ddc7c086c60c62e]
- git-author:
- Rémi Duraffort <ivoire@videolan.org> 1205319989 +0100
- Message:
The last but not the least commit about these useless tests.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r99fab90 |
r0274be8 |
|
| 264 | 264 | } |
|---|
| 265 | 265 | |
|---|
| 266 | | if( psz_name ) free( psz_name ); |
|---|
| 267 | | if( psz_description ) free( psz_description ); |
|---|
| 268 | | if( psz_genre ) free( psz_genre ); |
|---|
| 269 | | if( psz_url ) free( psz_url ); |
|---|
| | 266 | free( psz_name ); |
|---|
| | 267 | free( psz_description ); |
|---|
| | 268 | free( psz_genre ); |
|---|
| | 269 | free( psz_url ); |
|---|
| 270 | 270 | |
|---|
| 271 | 271 | var_Get( p_access, SOUT_CFG_PREFIX "mp3", &val ); |
|---|
| r6339478 |
r0274be8 |
|
| 400 | 400 | } |
|---|
| 401 | 401 | } |
|---|
| 402 | | if( val.psz_string ) free( val.psz_string ); |
|---|
| | 402 | free( val.psz_string ); |
|---|
| 403 | 403 | #endif |
|---|
| 404 | 404 | |
|---|
| r0e86a35 |
r0274be8 |
|
| 391 | 391 | } |
|---|
| 392 | 392 | |
|---|
| 393 | | if( p_items ) free( p_items ); |
|---|
| | 393 | free( p_items ); |
|---|
| 394 | 394 | break; |
|---|
| 395 | 395 | } |
|---|
| … | … | |
| 433 | 433 | } |
|---|
| 434 | 434 | |
|---|
| 435 | | if( p_items ) free( p_items ); |
|---|
| | 435 | free( p_items ); |
|---|
| 436 | 436 | break; |
|---|
| 437 | 437 | } |
|---|
| r2bd0742 |
r0274be8 |
|
| 627 | 627 | |
|---|
| 628 | 628 | free( psz_dir ); |
|---|
| 629 | | if( ppsz_dir_content != NULL ) |
|---|
| 630 | | free( ppsz_dir_content ); |
|---|
| | 629 | free( ppsz_dir_content ); |
|---|
| 631 | 630 | return s; |
|---|
| 632 | 631 | } |
|---|
| r99fab90 |
r0274be8 |
|
| 159 | 159 | i_socket = net_ConnectUDP( VLC_OBJECT(p_intf), psz_master, NETSYNC_PORT, 0 ); |
|---|
| 160 | 160 | |
|---|
| 161 | | if( psz_master ) free( psz_master ); |
|---|
| | 161 | free( psz_master ); |
|---|
| 162 | 162 | |
|---|
| 163 | 163 | if( i_socket < 0 ) |
|---|
| r0e86a35 |
r0274be8 |
|
| 1271 | 1271 | msg_rc( "+----[ end of %s ]", val_name.psz_string ); |
|---|
| 1272 | 1272 | |
|---|
| 1273 | | if( val_name.psz_string ) free( val_name.psz_string ); |
|---|
| | 1273 | free( val_name.psz_string ); |
|---|
| 1274 | 1274 | |
|---|
| 1275 | 1275 | i_error = VLC_SUCCESS; |
|---|
| … | … | |
| 1779 | 1779 | msg_rc( "+----[ end of %s ]", val_name.psz_string ); |
|---|
| 1780 | 1780 | |
|---|
| 1781 | | if( val_name.psz_string ) free( val_name.psz_string ); |
|---|
| | 1781 | free( val_name.psz_string ); |
|---|
| 1782 | 1782 | |
|---|
| 1783 | 1783 | i_error = VLC_SUCCESS; |
|---|
| … | … | |
| 1866 | 1866 | msg_rc( "+----[ end of %s ]", val_name.psz_string ); |
|---|
| 1867 | 1867 | |
|---|
| 1868 | | if( val_name.psz_string ) free( val_name.psz_string ); |
|---|
| | 1868 | free( val_name.psz_string ); |
|---|
| 1869 | 1869 | i_error = VLC_SUCCESS; |
|---|
| 1870 | 1870 | } |
|---|
| … | … | |
| 1934 | 1934 | msg_rc( _("Please provide one of the following parameters:") ); |
|---|
| 1935 | 1935 | msg_rc( "[on|off|up|down|left|right|select]" ); |
|---|
| 1936 | | if( val.psz_string ) free( val.psz_string ); |
|---|
| 1937 | | return i_error; |
|---|
| | 1936 | free( val.psz_string ); |
|---|
| | 1937 | return i_error; |
|---|
| 1938 | 1938 | } |
|---|
| 1939 | 1939 | |
|---|
| 1940 | 1940 | i_error = VLC_SUCCESS; |
|---|
| 1941 | | if( val.psz_string ) free( val.psz_string ); |
|---|
| | 1941 | free( val.psz_string ); |
|---|
| 1942 | 1942 | return i_error; |
|---|
| 1943 | 1943 | } |
|---|
| r1662591 |
r0274be8 |
|
| 231 | 231 | p_sys->clients[i] = NULL; |
|---|
| 232 | 232 | } |
|---|
| 233 | | if( p_sys->clients != NULL ) free( p_sys->clients ); |
|---|
| | 233 | free( p_sys->clients ); |
|---|
| 234 | 234 | |
|---|
| 235 | 235 | net_ListenClose( p_sys->pi_fd ); |
|---|
| … | … | |
| 516 | 516 | } |
|---|
| 517 | 517 | } |
|---|
| 518 | | if( psz_password ) |
|---|
| 519 | | free( psz_password ); |
|---|
| | 518 | free( psz_password ); |
|---|
| 520 | 519 | } |
|---|
| 521 | 520 | |
|---|
| … | … | |
| 527 | 526 | client->p_buffer_read = client->buffer_read; |
|---|
| 528 | 527 | (client->p_buffer_read)[0] = 0; // if (cl->p_buffer_read)[0] = '\n' |
|---|
| 529 | | if( client->buffer_write ) free( client->buffer_write ); |
|---|
| | 528 | free( client->buffer_write ); |
|---|
| 530 | 529 | |
|---|
| 531 | 530 | /* generate the psz_message string */ |
|---|