Author: akv
Date: 2010-01-28 00:21:34 +0100 (Thu, 28 Jan 2010)
New Revision: 3101
Modified:
branches/rawstudio-ng-color/src/rs-store.c
Log:
Normalizing path when loading photos.
Modified: branches/rawstudio-ng-color/src/rs-store.c
===================================================================
--- branches/rawstudio-ng-color/src/rs-store.c 2010-01-27 23:16:24 UTC (rev
3100)
+++ branches/rawstudio-ng-color/src/rs-store.c 2010-01-27 23:21:34 UTC (rev
3101)
@@ -1083,7 +1083,9 @@
if (name[0] == '.')
continue;
- fullname = g_build_filename(path, name, NULL);
+ gchar *temp = g_build_filename(path, name, NULL);
+ fullname = g_strdup(rs_normalize_path(temp));
+ g_free(temp);
if (rs_filetype_can_load(fullname))
{
_______________________________________________
Rawstudio-commit mailing list
[email protected]
http://rawstudio.org/cgi-bin/mailman/listinfo/rawstudio-commit