gsasl-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

CVS gsasl/lib/src


From: gsasl-commit
Subject: CVS gsasl/lib/src
Date: Mon, 29 Nov 2004 15:30:43 +0100

Update of /home/cvs/gsasl/lib/src
In directory dopio:/tmp/cvs-serv2898

Modified Files:
        base64.c 
Log Message:
Use new API.


--- /home/cvs/gsasl/lib/src/base64.c    2004/11/28 06:10:40     1.7
+++ /home/cvs/gsasl/lib/src/base64.c    2004/11/29 14:30:43     1.8
@@ -47,7 +47,7 @@
   if (outlen)
     *outlen = len;
 
-  if (len == SIZE_MAX || *out == NULL)
+  if (*out == NULL)
     return GSASL_MALLOC_ERROR;
 
   return GSASL_OK;
@@ -77,7 +77,7 @@
   if (!ok)
     return GSASL_BASE64_ERROR;
 
-  if (*outlen == SIZE_MAX || *out == NULL)
+  if (*out == NULL)
     return GSASL_MALLOC_ERROR;
 
   return GSASL_OK;





reply via email to

[Prev in Thread] Current Thread [Next in Thread]