be lenient on uri';s allow boring full paths.

SVN revision: 48380
This commit is contained in:
Carsten Haitzler 2010-04-28 03:30:48 +00:00
parent 4b1a77f8a0
commit aadcae0b20
1 changed files with 8 additions and 1 deletions

View File

@ -4196,6 +4196,14 @@ _e_fm2_uri_parse(const char *val)
char hostname[PATH_MAX], path[PATH_MAX];
int i = 0;
/* if value is a raw path: /path/to/blah just return it */
if (val[0] == '/')
{
uri = E_NEW(E_Fm2_Uri, 1);
uri->hostname = NULL;
uri->path = eina_stringshare_add(val);
return uri;
}
/* The shortest possible path is file:///
* anything smaller than that can't be a valid uri
*/
@ -4278,7 +4286,6 @@ _e_fm2_uri_icon_list_get(Eina_List *uri)
E_Fm2_Icon *ic;
ic = NULL;
fm = _e_fm2_file_fm2_find(path);
if (fm)
{