Ignore:
Timestamp:
Mar 11, 2009, 9:14:55 AM (16 years ago)
Author:
Paul Smedley
Message:

Add 'missing' 3.0.34 diffs

File:
1 edited

Legend:

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

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