Thu May 22 10:38:43 EDT 2008 Pekka.Pessi@nokia.com

* auth_client.c: fixed klocwork issues


git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@8638 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Michael Jerris 2008-05-25 15:22:45 +00:00
parent 2caded0dec
commit 47d689784d
2 changed files with 4 additions and 1 deletions

View File

@ -1 +1 @@
Sun May 25 11:21:50 EDT 2008
Sun May 25 11:22:40 EDT 2008

View File

@ -728,6 +728,9 @@ int auc_basic_authorization(auth_client_t *ca,
else
basic = malloc(basiclen + 1);
if (basic == NULL)
return -1;
/*
* Basic authentication consists of username and password separated by
* colon and then base64 encoded.