Changeset 782 for git/branches/dmik/builtin/pack-redundant.c
- Timestamp:
- Jun 23, 2014, 9:45:51 PM (11 years ago)
- Location:
- git/branches/dmik
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
git/branches/dmik ¶
- Property svn:mergeinfo changed
/git/vendor/2.0.0 (added) merged: 777 /git/vendor/current merged: 772,774,776
- Property svn:mergeinfo changed
-
TabularUnified git/branches/dmik/builtin/pack-redundant.c ¶
r347 r782 302 302 static struct pll * get_permutations(struct pack_list *list, int n) 303 303 { 304 struct pll *subset, *ret = NULL, *new_pll = NULL , *pll;304 struct pll *subset, *ret = NULL, *new_pll = NULL; 305 305 306 306 if (list == NULL || pack_list_size(list) < n || n == 0) … … 309 309 if (n == 1) { 310 310 while (list) { 311 new_pll = xmalloc(sizeof( pll));311 new_pll = xmalloc(sizeof(*new_pll)); 312 312 new_pll->pl = NULL; 313 313 pack_list_insert(&new_pll->pl, list); … … 322 322 subset = get_permutations(list->next, n - 1); 323 323 while (subset) { 324 new_pll = xmalloc(sizeof( pll));324 new_pll = xmalloc(sizeof(*new_pll)); 325 325 new_pll->pl = subset->pl; 326 326 pack_list_insert(&new_pll->pl, list);
Note:
See TracChangeset
for help on using the changeset viewer.