Changeset e5d7794c1c003f202191579a52ae7109751137d7
- Timestamp:
- 06/04/06 09:36:57
(3 years ago)
- Author:
- Clément Stenac <zorglub@videolan.org>
- git-committer:
- Clément Stenac <zorglub@videolan.org> 1144309017 +0000
- git-parent:
[335a2445b6c23c2b9ff63944c96c7a714f84e7f1]
- git-author:
- Clément Stenac <zorglub@videolan.org> 1144309017 +0000
- Message:
Fix potential bugs
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rc31926a |
re5d7794 |
|
| 209 | 209 | ac == 6 ? av[5] : (char *) NULL); |
|---|
| 210 | 210 | if (ret == 0) |
|---|
| 211 | | fprintf(stderr, dialog_input_result); |
|---|
| | 211 | fprintf(stderr, "%s", dialog_input_result); |
|---|
| 212 | 212 | return ret; |
|---|
| 213 | 213 | } |
|---|
| rfcd621c |
re5d7794 |
|
| 1651 | 1651 | #define CHECK_TYPE( x, s ) \ |
|---|
| 1652 | 1652 | if ( sinfo.type & (CA_##x) ) \ |
|---|
| 1653 | | p += sprintf( p, s ); |
|---|
| | 1653 | p += sprintf( p, "%s", s ); |
|---|
| 1654 | 1654 | |
|---|
| 1655 | 1655 | CHECK_TYPE( CI, "high level, " ); |
|---|
| r2cb472d |
re5d7794 |
|
| 674 | 674 | goto error; |
|---|
| 675 | 675 | description[size]=0; |
|---|
| 676 | | fprintf(stderr,description); |
|---|
| | 676 | fprintf(stderr, "%s", description); |
|---|
| 677 | 677 | |
|---|
| 678 | 678 | /* parse sdp (sdpplin) and create a header and a subscribe string */ |
|---|