Changeset 1e36b84e0ce097f69af64dc747b72dab1509cf7c
- Timestamp:
- 27/03/08 00:47:42
(7 months ago)
- Author:
- Rafaël Carré <funman@videolan.org>
- git-committer:
- Rafaël Carré <funman@videolan.org> 1206575262 +0100
- git-parent:
[d51dba48f9065eba4c167d21fe5258807e0da43f]
- git-author:
- Rafaël Carré <funman@videolan.org> 1206575262 +0100
- Message:
Fix a memory leak
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r8ca4ff0 |
r1e36b84 |
|
| 208 | 208 | p_udi_entry->psz_udi = strdup( psz_device ); |
|---|
| 209 | 209 | if( !p_udi_entry->psz_udi ) |
|---|
| 210 | | return; |
|---|
| | 210 | { |
|---|
| | 211 | free( p_udi_entry ); |
|---|
| | 212 | return; |
|---|
| | 213 | } |
|---|
| 211 | 214 | |
|---|
| 212 | 215 | vlc_gc_incref( p_input ); |
|---|