Public » Mercurial » dirstate
Clone URL:  
Pushed to one repository · View In Graph Contained in tip

fix memory leak

Changeset 6f548f28defe

Parent 385b8b63f121

by Profile picture of Benjamin PollackBenjamin Pollack

Changes to one file · Browse files at 6f548f28defe Showing diff from parent 385b8b63f121 Diff from another changeset...

Change 1 of 1 Show Entire File dirstate.c Stacked
 
70
71
72
 
73
74
75
 
70
71
72
73
74
75
76
@@ -70,6 +70,7 @@
 {   unsigned ix;   for (ix = 0; ix < d->num_entries; ++ix) free(d->entries[ix].name); + free(d->entries);   free(d);  }