Changeset a972b8b70806f4ad57ad7e0026a4a1bf77be29ca
- Timestamp:
- 17/09/06 21:13:33
(2 years ago)
- Author:
- Felix Paul Kühne <fkuehne@videolan.org>
- git-committer:
- Felix Paul Kühne <fkuehne@videolan.org> 1158520413 +0000
- git-parent:
[7fef8b8726f85876ffe110a949e1a09251094c83]
- git-author:
- Felix Paul Kühne <fkuehne@videolan.org> 1158520413 +0000
- Message:
* fixed intf_UserStringInput
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r6ecd402 |
ra972b8b |
|
| 399 | 399 | int i_ret; |
|---|
| 400 | 400 | DIALOG_INIT( TWOWAY ); |
|---|
| | 401 | p_new->i_type = INTERACT_DIALOG_TWOWAY; |
|---|
| 401 | 402 | p_new->psz_title = strdup( psz_title ); |
|---|
| 402 | 403 | p_new->psz_description = strdup( psz_description ); |
|---|
| … | … | |
| 408 | 409 | if( i_ret != DIALOG_CANCELLED ) |
|---|
| 409 | 410 | { |
|---|
| 410 | | assert( p_new->psz_returned[0] ); |
|---|
| 411 | | *ppsz_usersString = strdup( p_new->psz_returned[0] ); |
|---|
| | 411 | *ppsz_usersString = p_new->psz_returned[0]? |
|---|
| | 412 | strdup( p_new->psz_returned[0] ) : NULL; |
|---|
| 412 | 413 | } |
|---|
| 413 | 414 | return i_ret; |
|---|