]> git.sur5r.net Git - openldap/commitdiff
Fix argument order for ucisprop (coverity)
authorHoward Chu <hyc@openldap.org>
Tue, 13 Jan 2015 18:20:36 +0000 (18:20 +0000)
committerQuanah Gibson-Mount <quanah@openldap.org>
Tue, 13 Jan 2015 19:09:07 +0000 (13:09 -0600)
libraries/liblunicode/ure/urestubs.c

index c9835072d1c3bf4628e84b72f65299d15742b1c0..bf97211fdf74d98342bbe3a9803cac87b5ca3fcf 100644 (file)
@@ -123,5 +123,5 @@ _ure_matches_properties(unsigned long props, ucs4_t c)
                }
        }
 
-       return ucisprop( mask1, mask2, c );
+       return ucisprop( c, mask1, mask2 );
 }