]> granicus.if.org Git - curl/commitdiff
evhiperfifo: fix the pointer passed to WRITEDATA
authorDaniel Stenberg <daniel@haxx.se>
Thu, 1 Nov 2012 13:19:21 +0000 (14:19 +0100)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 1 Nov 2012 13:20:58 +0000 (14:20 +0100)
Bug: http://curl.haxx.se/bug/view.cgi?id=3582407
Reported by: Oscar Norlander

docs/examples/evhiperfifo.c

index 6de4dadc76c3395bc83e49267b5b0e8dde73b08b..c2e87fcc561d8bc9ac0b288fbe2a6a2608e0bd06 100644 (file)
@@ -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);