diff options
author | Daniel Stenberg <daniel@haxx.se> | 2012-11-01 14:19:21 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2012-11-01 14:20:58 +0100 |
commit | af121ccad8190a47a2a62594bfc01c039b68ca44 (patch) | |
tree | 383bde4f8d95ae1a8dfb7351ab4d2c22a0ced601 | |
parent | c81eb7e226be6c8ead3865592f3f2487fab4caeb (diff) |
evhiperfifo: fix the pointer passed to WRITEDATA
Bug: http://curl.haxx.se/bug/view.cgi?id=3582407
Reported by: Oscar Norlander
-rw-r--r-- | docs/examples/evhiperfifo.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/examples/evhiperfifo.c b/docs/examples/evhiperfifo.c index 6de4dadc7..c2e87fcc5 100644 --- a/docs/examples/evhiperfifo.c +++ b/docs/examples/evhiperfifo.c @@ -5,7 +5,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2011, Daniel Stenberg, <daniel@haxx.se>, et al. + * Copyright (C) 1998 - 2012, Daniel Stenberg, <daniel@haxx.se>, et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms @@ -336,7 +336,7 @@ static void new_conn(char *url, GlobalInfo *g ) conn->url = strdup(url); curl_easy_setopt(conn->easy, CURLOPT_URL, conn->url); curl_easy_setopt(conn->easy, CURLOPT_WRITEFUNCTION, write_cb); - curl_easy_setopt(conn->easy, CURLOPT_WRITEDATA, &conn); + curl_easy_setopt(conn->easy, CURLOPT_WRITEDATA, conn); curl_easy_setopt(conn->easy, CURLOPT_VERBOSE, 1L); curl_easy_setopt(conn->easy, CURLOPT_ERRORBUFFER, conn->error); curl_easy_setopt(conn->easy, CURLOPT_PRIVATE, conn); |