View Issue Details
| ID | Project | Category | View Status | Date Submitted | Last Update |
|---|---|---|---|---|---|
| 0001646 | libmicrohttpd | digest authentication (HTTP) | public | 2011-01-24 09:04 | 2011-02-15 12:19 |
| Reporter | bplant | Assigned To | Christian Grothoff | ||
| Priority | normal | Severity | major | Reproducibility | always |
| Status | closed | Resolution | fixed | ||
| Summary | 0001646: 0.9.5 does not compile when DAUTH_SUPPORT is 0 | ||||
| Description | 0.9.5 does not compile when DAUTH_SUPPORT is 0 There is a missing #if/#endif - patch attached. | ||||
| Tags | No tags attached. | ||||
| Attached Files | dauth.patch (459 bytes)
Index: src/daemon/daemon.c
===================================================================
--- src/daemon/daemon.c (revision 692)
+++ src/daemon/daemon.c (working copy)
@@ -1793,8 +1793,10 @@
MHD_DLOG (retVal,
"MHD poll support only works with MHD_USE_THREAD_PER_CONNECTION\n");
#endif
+#if DAUTH_SUPPORT
free (retVal->nnc);
pthread_mutex_destroy (&retVal->nnc_lock);
+#endif
free (retVal);
return NULL;
}
| ||||
| Date Modified | Username | Field | Change |
|---|---|---|---|
| 2011-01-24 09:04 | bplant | New Issue | |
| 2011-01-24 09:04 | bplant | File Added: dauth.patch | |
| 2011-01-24 16:37 | Christian Grothoff | Note Added: 0004234 | |
| 2011-01-24 16:37 | Christian Grothoff | Status | new => resolved |
| 2011-01-24 16:37 | Christian Grothoff | Resolution | open => fixed |
| 2011-01-24 16:37 | Christian Grothoff | Assigned To | => Christian Grothoff |
| 2011-02-15 12:19 | Christian Grothoff | Status | resolved => closed |
| 2013-05-06 12:52 | Christian Grothoff | Category | digest authentication => digest authentication (HTTP) |