Changeset 4f58d06b5f65827e37b9e29d6b515e123dd194ba
- Timestamp:
- 23/01/08 15:56:46
(9 months ago)
- Author:
- Damien Fouilleul <damienf@videolan.org>
- git-committer:
- Damien Fouilleul <damienf@videolan.org> 1201100206 +0000
- git-parent:
[5f6ba47b02feeec7f248e63377b60256af790663]
- git-author:
- Damien Fouilleul <damienf@videolan.org> 1201100206 +0000
- Message:
gnutls: fool VLC_OBJECT() cast check for NULL objects
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r43dbc00 |
r4f58d06 |
|
| 116 | 116 | return ENOMEM; |
|---|
| 117 | 117 | |
|---|
| 118 | | i_val = vlc_mutex_init( NULL, p_lock ); |
|---|
| | 118 | i_val = vlc_mutex_init( (vlc_object_t *)NULL, p_lock ); |
|---|
| 119 | 119 | if( i_val ) |
|---|
| 120 | 120 | free( p_lock ); |
|---|