[backfire] merge r20885
authorjow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Thu, 15 Apr 2010 20:09:34 +0000 (20:09 +0000)
committerjow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Thu, 15 Apr 2010 20:09:34 +0000 (20:09 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/branches/backfire@20886 3c298f89-4303-0410-b956-a3cf2f4a3e73

package/uhttpd/src/uhttpd-utils.c

index e65f2136d64fce7b8518087eb4295e2bf22b2f3a..96c0b82cda5d3c79e0a419cd67579caccebbf0fa 100644 (file)
@@ -420,8 +420,9 @@ static char * canonpath(const char *path, char *path_resolved)
                                }
 
                                /* collapse /x/../ */
-                               else if( path_cpy[2] == '.' )
-                               {
+                               else if( (path_cpy[2] == '.') &&
+                                        ((path_cpy[3] == '/') || (path_cpy[3] == '\0'))
+                               ) {
                                        while( (path_res > path_resolved) && (*--path_res != '/') )
                                                ;