Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 12 Jun 2002 14:13:03 -0700 (PDT)
From:      Dag-Erling Smorgrav <des@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 12775 for review
Message-ID:  <200206122113.g5CLD3Q20598@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://people.freebsd.org/~peter/p4db/chv.cgi?CH=12775

Change 12775 by des@des.at.des.thinksec.com on 2002/06/12 14:12:28

	s/NULL/NULL_PTR/ (for a moment there I almost though I was writing C)

Affected files ...

... //depot/projects/cryptoki/lib/C_GetFunctionList.c#4 edit

Differences ...

==== //depot/projects/cryptoki/lib/C_GetFunctionList.c#4 (text+ko) ====

@@ -31,7 +31,7 @@
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
  *
- * $P4: //depot/projects/cryptoki/lib/C_GetFunctionList.c#3 $
+ * $P4: //depot/projects/cryptoki/lib/C_GetFunctionList.c#4 $
  */
 
 #include <cryptoki.h>
@@ -112,7 +112,7 @@
 C_GetFunctionList(CK_FUNCTION_LIST_PTR_PTR ppFunctionList)
 {
 
-	if (ppFunctionList == NULL)
+	if (ppFunctionList == NULL_PTR)
 		return (CKR_ARGUMENTS_BAD);
 	*ppFunctionList = &_ck_FunctionList;
 	return (CKR_OK);

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe p4-projects" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200206122113.g5CLD3Q20598>