Changeset 53a76832ce6af9cd1680e6b6f06a718586aa7fce
- Timestamp:
- 12/12/06 10:26:26
(2 years ago)
- Author:
- Jean-Paul Saman <jpsaman@videolan.org>
- git-committer:
- Jean-Paul Saman <jpsaman@videolan.org> 1165915586 +0000
- git-parent:
[7acc0ba62d6ba4a18d8c3f068f1d1bf11e1ab193]
- git-author:
- Jean-Paul Saman <jpsaman@videolan.org> 1165915586 +0000
- Message:
Fix compilation warnings
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rd3fe7f2 |
r53a7683 |
|
| 25 | 25 | * Preamble |
|---|
| 26 | 26 | *****************************************************************************/ |
|---|
| | 27 | #include <config.h> |
|---|
| | 28 | |
|---|
| 27 | 29 | #include <stdlib.h> /* malloc(), free() */ |
|---|
| 28 | 30 | #include <string.h> |
|---|
| … | … | |
| 85 | 87 | id3_length_t i_ufidlen; |
|---|
| 86 | 88 | |
|---|
| 87 | | p_ufid = id3_field_getbinarydata( &p_frame->fields[1], &i_ufidlen ); |
|---|
| | 89 | p_ufid = (id3_byte_t const *) |
|---|
| | 90 | id3_field_getbinarydata( |
|---|
| | 91 | &p_frame->fields[1], |
|---|
| | 92 | &i_ufidlen ); |
|---|
| 88 | 93 | char *psz_ufid = strndup( p_ufid, i_ufidlen ); |
|---|
| 89 | 94 | |
|---|