~ubuntu-branches/ubuntu/lucid/curl/lucid-security

« back to all changes in this revision

Viewing changes to lib/getinfo.c

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2005-12-12 15:04:52 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20051212150452-2ymlra67b2p7kjyy
Tags: 7.15.1-1ubuntu1
Resynchronise with Debian to get URL parser overflow fix from 7.15.1
(CVE-2005-4077).

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19
19
 * KIND, either express or implied.
20
20
 *
21
 
 * $Id: getinfo.c,v 1.45 2005/04/22 20:48:07 bagder Exp $
 
21
 * $Id: getinfo.c,v 1.46 2005/07/27 22:17:15 bagder Exp $
22
22
 ***************************************************************************/
23
23
 
24
24
#include "setup.h"
184
184
  case CURLINFO_SSL_ENGINES:
185
185
    *param_slistp = Curl_ssl_engines_list(data);
186
186
    break;
 
187
  case CURLINFO_COOKIELIST:
 
188
    *param_slistp = Curl_cookie_list(data);
 
189
    break;
187
190
  default:
188
191
    return CURLE_BAD_FUNCTION_ARGUMENT;
189
192
  }