View Issue Details
| ID | Project | Category | View Status | Date Submitted | Last Update |
|---|---|---|---|---|---|
| 0001459 | libmicrohttpd | external API | public | 2009-02-27 15:35 | 2009-08-25 06:19 |
| Reporter | epienbro | Assigned To | Christian Grothoff | ||
| Priority | normal | Severity | minor | Reproducibility | always |
| Status | closed | Resolution | fixed | ||
| Fixed in Version | 0.4.2 | ||||
| Summary | 0001459: Another 64bit issue | ||||
| Description | Within the Fedora project a complete rebuild of the entire distribution is going on at the moment because of the introduction of GCC 4.4 and to change the default compiler flags [1]. This complete rebuild uncovered another 64bit issue in libmicrohttpd [2]. After applying the attached patch, the build and all the testcases succeed. [1]: https://fedoraproject.org/wiki/Features/gcc4.4 [2]: http://koji.fedoraproject.org/koji/getfile?taskID=1190311&name=build.log | ||||
| Tags | No tags attached. | ||||
| Attached Files | libmicrohttpd_64bit_fix.patch (511 bytes)
--- src/testcurl/daemontest_large_put.c.orig 2009-02-27 22:58:16.926062599 +0100
+++ src/testcurl/daemontest_large_put.c 2009-02-27 22:58:20.776312622 +0100
@@ -274,7 +274,7 @@
1082,
NULL, NULL, &ahc_echo, &done_flag,
MHD_OPTION_CONNECTION_MEMORY_LIMIT,
- PUT_SIZE * 4, MHD_OPTION_END);
+ (size_t) PUT_SIZE * 4, MHD_OPTION_END);
if (d == NULL)
return 256;
c = curl_easy_init ();
| ||||
| Date Modified | Username | Field | Change |
|---|---|---|---|
| 2009-02-27 15:35 | epienbro | New Issue | |
| 2009-02-27 15:35 | epienbro | File Added: libmicrohttpd_64bit_fix.patch | |
| 2009-02-27 21:16 | Christian Grothoff | Status | new => assigned |
| 2009-02-27 21:16 | Christian Grothoff | Assigned To | => Christian Grothoff |
| 2009-02-27 21:16 | Christian Grothoff | Status | assigned => resolved |
| 2009-02-27 21:16 | Christian Grothoff | Resolution | open => fixed |
| 2009-02-27 21:16 | Christian Grothoff | Note Added: 0003819 | |
| 2009-08-25 06:19 | Christian Grothoff | Status | resolved => closed |
| 2009-08-25 06:19 | Christian Grothoff | Fixed in Version | => 0.4.2 |
| 2013-05-06 12:52 | Christian Grothoff | Category | API => libmicrohttpd API |
| 2024-01-21 13:24 | Christian Grothoff | Category | libmicrohttpd API => external API |