Ignore:
Timestamp:
May 26, 2009, 9:44:50 AM (16 years ago)
Author:
Herwig Bauernfeind
Message:

Update 3.2 branch to 3.2.6

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/samba-3.2.x/source/web/statuspage.c

    r133 r228  
    4444        /* show machine name rather PID on table "Open Files"? */
    4545        if (PID_or_Machine) {
    46                 PIDMAP *p;
    47 
    48                 for (p = pidmap; p != NULL; ) {
     46                PIDMAP *p, *next;
     47
     48                for (p = pidmap; p != NULL; p = next) {
     49                        next = p->next;
    4950                        DLIST_REMOVE(pidmap, p);
    5051                        SAFE_FREE(p->machine);
Note: See TracChangeset for help on using the changeset viewer.