1 /***************************************************************************
2 * _ _ ____ _
3 * Project ___| | | | _ \| |
4 * / __| | | | |_) | |
5 * | (__| |_| | _ <| |___
6 * \___|\___/|_| \_\_____|
7 *
8 * Copyright (C) 1998 - 2012, Daniel Stenberg, <daniel@haxx.se>, et al.
9 *
10 * This software is licensed as described in the file COPYING, which
11 * you should have received as part of this distribution. The terms
12 * are also available at http://curl.haxx.se/docs/copyright.html.
13 *
14 * You may opt to use, copy, modify, merge, publish, distribute and/or sell
15 * copies of the Software, and permit persons to whom the Software is
16 * furnished to do so, under the terms of the COPYING file.
17 *
18 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19 * KIND, either express or implied.
20 *
21 ***************************************************************************/
22 /* Based on Alex Fishman's bug report on September 30, 2007 */
23
24 #include "test.h"
25
26 #include "memdebug.h"
27
test(char * URL)28 int test(char *URL)
29 {
30 unsigned char a[] = {0x9c, 0x26, 0x4b, 0x3d, 0x49, 0x4, 0xa1, 0x1,
31 0xe0, 0xd8, 0x7c, 0x20, 0xb7, 0xef, 0x53, 0x29, 0xfa,
32 0x1d, 0x57, 0xe1};
33
34 CURL *easy;
35 int asize;
36 char *s;
37 (void)URL;
38
39 if ((easy = curl_easy_init()) == NULL) {
40 fprintf(stderr, "curl_easy_init() failed\n");
41 return TEST_ERR_MAJOR_BAD;
42 }
43
44 asize = (int)sizeof(a);
45
46 s = curl_easy_escape(easy, (char*)a, asize);
47
48 if(s)
49 printf("%s\n", s);
50
51 if(s)
52 curl_free(s);
53
54 curl_easy_cleanup(easy);
55
56 return 0;
57 }
58