Code review comment for lp:~ralsina/ubuntuone-client/fix_714976

Revision history for this message
dobey (dobey) wrote :

18 + } else {
19 + root_with_slash = g_build_filename (root, G_DIR_SEPARATOR_S, NULL);
20
21 + if (g_str_has_prefix (path, root_with_slash)) {
22 + g_free(root_with_slash);
23 + return TRUE;
24 + }
25 + g_free(root_with_slash);
26 + }

The style is a bit messed up here. Tabs vs. spaces issues maybe?

review: Needs Fixing

« Back to merge proposal