added comment to FreeSid
authorGunnar Dalsnes <hardon@online.no>
Sun, 20 Jun 2004 23:39:07 +0000 (23:39 +0000)
committerGunnar Dalsnes <hardon@online.no>
Sun, 20 Jun 2004 23:39:07 +0000 (23:39 +0000)
svn path=/trunk/; revision=9785

reactos/lib/advapi32/sec/sid.c

index 5ddeb7e..b930334 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: sid.c,v 1.12 2004/03/25 11:30:07 ekohl Exp $
+/* $Id: sid.c,v 1.13 2004/06/20 23:39:07 gdalsnes Exp $
  *
  * COPYRIGHT:       See COPYING in the top level directory
  * PROJECT:         ReactOS system libraries
@@ -117,11 +117,15 @@ EqualSid (PSID pSid1,
 
 /*
  * @implemented
+ *
+ * RETURNS
+ *  Docs says this function does NOT return a value
+ *  even thou it's defined to return a PVOID...
  */
 PVOID STDCALL
 FreeSid (PSID pSid)
 {
-  return RtlFreeSid (pSid);
+   return RtlFreeSid (pSid);
 }