Fix for isFileInVirtualDir. Thanks to Peter Hartley for the patch.

git-svn-id: https://pupnp.svn.sourceforge.net/svnroot/pupnp/trunk@290 119443c7-1b9e-41f8-b6fc-b9c35fce742c
This commit is contained in:
Marcelo Roberto Jimenez 2008-01-21 23:35:08 +00:00
parent f94b090c80
commit 1ab5221db5
3 changed files with 6 additions and 1 deletions

View File

@ -9,10 +9,14 @@ Version 1.6.4
@name UPNP_E_UNSUBSCRIBE_UNACCAPTED [-302] @name UPNP_E_UNSUBSCRIBE_UNACCAPTED [-302]
Also, the documentation file name was mispelled and was corrected in Also, the documentation file name was mispelled and was corrected in
the Makefile.am. the Makefile.am.
2008-01-07 Marcelo Jimenez <mroberto(at)users.sourceforge.net> 2008-01-07 Marcelo Jimenez <mroberto(at)users.sourceforge.net>
* Putting back a "defined(__OSX__)" that has been removed in the * Putting back a "defined(__OSX__)" that has been removed in the
previous *BSD patch. Thanks to Chris Pickel for pointing it out. previous *BSD patch. Thanks to Chris Pickel for pointing it out.
2008-01-21 Marcelo Jimenez <mroberto(at)users.sourceforge.net>
* Fix for isFileInVirtualDir. Thanks to Peter Hartley for the patch.
******************************************************************************* *******************************************************************************
Version 1.6.3 Version 1.6.3
******************************************************************************* *******************************************************************************

1
THANKS
View File

@ -36,6 +36,7 @@ exempt of errors.
- Oskar Liljeblad - Oskar Liljeblad
- Michael (oxygenic) - Michael (oxygenic)
- Paul Vixie - Paul Vixie
- Peter Hartley
- Rene Hexel - Rene Hexel
- Robert Gingher (robsbox) - Robert Gingher (robsbox)
- Siva Chandran - Siva Chandran

View File

@ -745,7 +745,7 @@ isFileInVirtualDir( IN char *filePath )
return TRUE; return TRUE;
} else { } else {
if( ( strncmp( pCurVirtualDir->dirName, filePath, webDirLen ) if( ( strncmp( pCurVirtualDir->dirName, filePath, webDirLen )
== 0 ) && ( filePath[webDirLen] == '/' ) ) == 0 ) && ( filePath[webDirLen] == '/' || filePath[webDirLen] == '\0' ) )
return TRUE; return TRUE;
} }