Bug #23 » bug23-htp.patch
| htp/dslib.c (working copy) | ||
|---|---|---|
|
* if the element at that position carries a NULL
|
||
|
*/
|
||
|
static void *list_array_get(list_t *_l, size_t index) {
|
||
|
if(_l == NULL) return NULL;
|
||
|
list_array_t *l = (list_array_t *) _l;
|
||
|
void *r = NULL;
|
||