View | Details | Raw Unified | Return to issue 22598
Collapse All | Expand All

(-)unx/source/window/salframe.cxx.memleak (+2 lines)
Lines 971-976 Link Here
971
                    if( pName )
971
                    if( pName )
972
                        XFree( pName );
972
                        XFree( pName );
973
                 }
973
                 }
974
                if ( pProps )
975
                    XFree( pProps );
974
            }
976
            }
975
            if( bGnomeIconSize )
977
            if( bGnomeIconSize )
976
                iconSize = 20;
978
                iconSize = 20;
(-)unx/source/app/wmadaptor.cxx.memleak (+8 lines)
Lines 569-574 Link Here
569
            }
569
            }
570
        }
570
        }
571
    }
571
    }
572
573
    // XGetWindowProperty() actually allocates space in pProperty even if the property doesn't
574
    // exist.  This is defined behavior of the function, so we have to free it anyway.
575
    if( pProperty )
576
    {
577
        XFree( pProperty );
578
        pProperty = NULL;
579
    }
572
}
580
}
573
581
574
/*
582
/*

Return to issue 22598