Changeset debfaaa1a843326ca254daab1479f34ad30deab7
- Timestamp:
- 05/15/08 19:39:45
(2 months ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1210873185 +0300
- git-parent:
[7c75fc26c3d146d80827f3e31318f21570d3a4d6]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1210873185 +0300
- Message:
Do not allow variable substitution in MRL path schemas
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r4cc4c67 |
rdebfaaa |
|
| 2835 | 2835 | if( psz_demux ) |
|---|
| 2836 | 2836 | *psz_demux++ = '\0'; |
|---|
| | 2837 | |
|---|
| | 2838 | /* We really don't want module name substitution here! */ |
|---|
| | 2839 | if( psz_access[0] == '$' ) |
|---|
| | 2840 | psz_access++; |
|---|
| | 2841 | if( psz_demux && psz_demux[0] == '$' ) |
|---|
| | 2842 | psz_demux++; |
|---|
| 2837 | 2843 | } |
|---|
| 2838 | 2844 | else |
|---|