]> saetta.ns0.it Git - zakautho/libzakautho/commitdiff
Autoz::is_allowed when exclude_null accepts resource NULL. libgda4 v0.0.2
authorAndrea Zagli <a.zagli@comune.scandicci.fi.it>
Wed, 19 Dec 2012 10:39:20 +0000 (11:39 +0100)
committerAndrea Zagli <a.zagli@comune.scandicci.fi.it>
Wed, 19 Dec 2012 10:39:20 +0000 (11:39 +0100)
src/autoz.c

index 14befbf0c25aef9b0e12f38c7819e34fa541ceb0..406a716db935ae4b0e22b45fcd5321c8ddb9f257 100644 (file)
@@ -1095,7 +1095,6 @@ autoz_is_allowed (Autoz *autoz, AutozIRole *irole, AutozIResource *iresource, gb
 
        g_return_val_if_fail (IS_AUTOZ (autoz), FALSE);
        g_return_val_if_fail (AUTOZ_IS_IROLE (irole), FALSE);
-       g_return_val_if_fail (AUTOZ_IS_IRESOURCE (iresource), FALSE);
 
        _autoz_check_updated (autoz);
 
@@ -1110,13 +1109,6 @@ autoz_is_allowed (Autoz *autoz, AutozIRole *irole, AutozIResource *iresource, gb
                        return ret;
                }
 
-       resource = _autoz_get_resource_from_id (autoz, _autoz_remove_resource_name_prefix_from_id (autoz, autoz_iresource_get_resource_id (iresource)));
-       if (resource == NULL)
-               {
-                       g_warning ("Resource «%s» not found.", autoz_iresource_get_resource_id (iresource));
-                       return ret;
-               }
-
        if (!exclude_null)
                {
                        /* first trying for a rule for every resource */
@@ -1136,6 +1128,15 @@ autoz_is_allowed (Autoz *autoz, AutozIRole *irole, AutozIResource *iresource, gb
                                }
                }
 
+       g_return_val_if_fail (AUTOZ_IS_IRESOURCE (iresource), FALSE);
+
+       resource = _autoz_get_resource_from_id (autoz, _autoz_remove_resource_name_prefix_from_id (autoz, autoz_iresource_get_resource_id (iresource)));
+       if (resource == NULL)
+               {
+                       g_warning ("Resource «%s» not found.", autoz_iresource_get_resource_id (iresource));
+                       return ret;
+               }
+
        /* and after for specific resource */
        str_id = g_strconcat (autoz_irole_get_role_id (irole),
                              "|",