Changeset e4e08275d001539723a3627586e4aa6de87b88ba
- Timestamp:
- 15/08/08 00:00:04
(4 months ago)
- Author:
- Rémi Duraffort <ivoire@videolan.org>
- git-committer:
- Rémi Duraffort <ivoire@videolan.org> 1218751204 +0200
- git-parent:
[9b87946bde7aacd0d1b31cde672331508281d655]
- git-author:
- Rémi Duraffort <ivoire@videolan.org> 1218751204 +0200
- Message:
Fix unitialized value.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r928bf10 |
re4e0827 |
|
| 136 | 136 | /* Allocate the memory needed to store the module's structure */ |
|---|
| 137 | 137 | p_sys = malloc( sizeof(filter_sys_t) ); |
|---|
| 138 | | p_filter->p_sys = (struct aout_filter_sys_t *)p_sys; |
|---|
| 139 | 138 | if( p_sys == NULL ) |
|---|
| 140 | 139 | return VLC_ENOMEM; |
|---|
| | 140 | p_filter->p_sys = (struct aout_filter_sys_t *)p_sys; |
|---|
| 141 | 141 | |
|---|
| 142 | 142 | /* Calculate worst case for the length of the filter wing */ |
|---|
| … | … | |
| 157 | 157 | |
|---|
| 158 | 158 | p_sys->i_old_wing = 0; |
|---|
| | 159 | p_sys->b_filter2 = false; /* It seams to be a good valuefor this module */ |
|---|
| 159 | 160 | p_filter->pf_do_work = DoWork; |
|---|
| 160 | 161 | |
|---|