Changeset 5a4f82600755445667eb01c4ec4b818051e938b7
- Timestamp:
- 08/13/06 16:31:02
(2 years ago)
- Author:
- Jean-Paul Saman <jpsaman@videolan.org>
- git-committer:
- Jean-Paul Saman <jpsaman@videolan.org> 1155479462 +0000
- git-parent:
[87de74a84516cce295b3bd8bedbb9fd45c8dc292]
- git-author:
- Jean-Paul Saman <jpsaman@videolan.org> 1155479462 +0000
- Message:
Fix memory leak
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rde6aa43 |
r5a4f826 |
|
| 438 | 438 | |
|---|
| 439 | 439 | /* Allocate the memory needed to store the module's structure */ |
|---|
| 440 | | p_sys = p_filter->p_sys = malloc( sizeof(filter_sys_t) ); |
|---|
| 441 | | if( p_sys == NULL ) |
|---|
| 442 | | { |
|---|
| 443 | | msg_Err( p_filter, "out of memory" ); |
|---|
| 444 | | return VLC_EGENERIC; |
|---|
| 445 | | } |
|---|
| 446 | | |
|---|
| 447 | | /* Allocate the memory needed to store the module's structure */ |
|---|
| 448 | 440 | p_filter->p_sys = p_sys = malloc( sizeof(filter_sys_t) ); |
|---|
| 449 | 441 | if( p_sys == NULL ) |
|---|