Skip to content
Snippets Groups Projects
Commit fbf4de4ae5e7 authored by Nick Wellnhofer's avatar Nick Wellnhofer
Browse files

Fix misleading indentation in security.c

parent c1d9426d54d7
Branches
No related tags found
No related merge requests found
...@@ -390,8 +390,8 @@ ...@@ -390,8 +390,8 @@
ret = xsltCheckWritePath(sec, ctxt, uri->path+1); ret = xsltCheckWritePath(sec, ctxt, uri->path+1);
else else
#endif #endif
{
/* /*
* Check if we are allowed to write this file * Check if we are allowed to write this file
*/ */
ret = xsltCheckWritePath(sec, ctxt, uri->path); ret = xsltCheckWritePath(sec, ctxt, uri->path);
...@@ -394,7 +394,9 @@ ...@@ -394,7 +394,9 @@
/* /*
* Check if we are allowed to write this file * Check if we are allowed to write this file
*/ */
ret = xsltCheckWritePath(sec, ctxt, uri->path); ret = xsltCheckWritePath(sec, ctxt, uri->path);
}
if (ret <= 0) { if (ret <= 0) {
xmlFreeURI(uri); xmlFreeURI(uri);
return(ret); return(ret);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment