Changeset ebbc708d8d85778ede0a6c41a315d8e9512cfb09
- Timestamp:
- 22/08/07 18:05:39
(1 year ago)
- Author:
- Pierre d'Herbemont <pdherbemont@videolan.org>
- git-committer:
- Pierre d'Herbemont <pdherbemont@videolan.org> 1187798739 +0000
- git-parent:
[0a7c2d3ce72bbf7db42a4ed7ae1ad455e8bc40d2]
- git-author:
- Pierre d'Herbemont <pdherbemont@videolan.org> 1187798739 +0000
- Message:
input/meta.c: Fix ArtCacheCreateDir? Attempt #4. (thanks to ILEoo).
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r0a7c2d3 |
rebbc708 |
|
| 235 | 235 | while( *psz ) |
|---|
| 236 | 236 | { |
|---|
| 237 | | while( *psz && *psz != '/') psz++; |
|---|
| | 237 | while( *psz && *psz != DIR_SEP_CHAR) psz++; |
|---|
| 238 | 238 | if( !*psz ) break; |
|---|
| 239 | 239 | *psz = 0; |
|---|
| 240 | 240 | if( !EMPTY_STR( psz_newdir ) ) utf8_mkdir( psz_newdir ); |
|---|
| 241 | | *psz = DIR_SEP; |
|---|
| | 241 | *psz = DIR_SEP_CHAR; |
|---|
| 242 | 242 | psz++; |
|---|
| 243 | 243 | } |
|---|