~ubuntu-branches/ubuntu/utopic/suricata/utopic

« back to all changes in this revision

Viewing changes to libhtp/htp/dslib.c

  • Committer: Package Import Robot
  • Author(s): Pierre Chifflier
  • Date: 2012-11-17 09:56:08 UTC
  • mfrom: (1.1.16)
  • Revision ID: package-import@ubuntu.com-20121117095608-dwebi6atmv0hpwz1
Tags: 1.3.4-1
ImportedĀ UpstreamĀ versionĀ 1.3.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
530
530
 */
531
531
void table_clear(table_t *table) {    
532
532
    // TODO Clear table by removing the existing elements
533
 
    
 
533
    if (table == NULL)
 
534
        return;
534
535
    size_t size = list_size(table->list);
535
536
 
536
537
    list_destroy(table->list);