summaryrefslogtreecommitdiff
path: root/lib/share.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-07-02 08:28:31 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-07-02 08:28:31 +0000
commita9572bf88ae9d1efcdbc77b04ee88badfae3efbb (patch)
treef4a6e433d8b3f9da182942059f437f83f480e85f /lib/share.c
parent5a93f50394ac3f64e94722a9a1ccf59ec81d6600 (diff)
downloadcurl-a9572bf88ae9d1efcdbc77b04ee88badfae3efbb.tar.gz
Andrés García found out the share cleanup code crashes when you cleanup
and there are not lock/unlock functions set!
Diffstat (limited to 'lib/share.c')
-rw-r--r--lib/share.c33
1 files changed, 18 insertions, 15 deletions
diff --git a/lib/share.c b/lib/share.c
index ad68496f6..5c01845df 100644
--- a/lib/share.c
+++ b/lib/share.c
@@ -1,8 +1,8 @@
/***************************************************************************
- * _ _ ____ _
- * Project ___| | | | _ \| |
- * / __| | | | |_) | |
- * | (__| |_| | _ <| |___
+ * _ _ ____ _
+ * Project ___| | | | _ \| |
+ * / __| | | | |_) | |
+ * | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
* Copyright (C) 1998 - 2004, Daniel Stenberg, <daniel@haxx.se>, et al.
@@ -10,7 +10,7 @@
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
* are also available at http://curl.haxx.se/docs/copyright.html.
- *
+ *
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
* copies of the Software, and permit persons to whom the Software is
* furnished to do so, under the terms of the COPYING file.
@@ -135,7 +135,7 @@ curl_share_setopt(CURLSH *sh, CURLSHoption option, ...)
case CURLSHOPT_UNLOCKFUNC:
unlockfunc = va_arg(param, curl_unlock_function);
- share->unlockfunc = unlockfunc;
+ share->unlockfunc = unlockfunc;
break;
case CURLSHOPT_USERDATA:
@@ -154,15 +154,17 @@ CURLSHcode
curl_share_cleanup(CURLSH *sh)
{
struct Curl_share *share = (struct Curl_share *)sh;
-
+
if (share == NULL)
return CURLSHE_INVALID;
-
- share->lockfunc(NULL, CURL_LOCK_DATA_SHARE, CURL_LOCK_ACCESS_SINGLE,
- share->clientdata);
-
+
+ if(share->lockfunc)
+ share->lockfunc(NULL, CURL_LOCK_DATA_SHARE, CURL_LOCK_ACCESS_SINGLE,
+ share->clientdata);
+
if (share->dirty) {
- share->unlockfunc(NULL, CURL_LOCK_DATA_SHARE, share->clientdata);
+ if(share->unlockfunc)
+ share->unlockfunc(NULL, CURL_LOCK_DATA_SHARE, share->clientdata);
return CURLSHE_IN_USE;
}
@@ -174,9 +176,10 @@ curl_share_cleanup(CURLSH *sh)
Curl_cookie_cleanup(share->cookies);
#endif /* CURL_DISABLE_HTTP */
- share->unlockfunc(NULL, CURL_LOCK_DATA_SHARE, share->clientdata);
- free (share);
-
+ if(share->unlockfunc)
+ share->unlockfunc(NULL, CURL_LOCK_DATA_SHARE, share->clientdata);
+ free(share);
+
return CURLSHE_OK;
}