Changeset 992e35f10497e5509ed588d643a1ef26b3422f6b
- Timestamp:
- 05/01/08 20:24:07
(4 months ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1209666247 +0300
- git-parent:
[78880d35f3b4b38c909ede5b37b4879639bffb70]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1209666247 +0300
- Message:
Use malloc(1) as cookie rather than malloc(0)
malloc(0) can legally be NULL (or not unique).
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r52e95c9 |
r992e35f |
|
| 81 | 81 | { |
|---|
| 82 | 82 | VLC_UNUSED(p_stream); VLC_UNUSED(p_fmt); |
|---|
| 83 | | return malloc( 0 ); |
|---|
| | 83 | return malloc( 1 ); |
|---|
| 84 | 84 | } |
|---|
| 85 | 85 | |
|---|