Ignore:
Timestamp:
Jun 23, 2014, 9:45:51 PM (11 years ago)
Author:
dmik
Message:

git: Merge version 2.0.0 from vendor to dmik branch.

Location:
git/branches/dmik
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • git/branches/dmik

  • TabularUnified git/branches/dmik/builtin/pack-redundant.c

    r347 r782  
    302302static struct pll * get_permutations(struct pack_list *list, int n)
    303303{
    304         struct pll *subset, *ret = NULL, *new_pll = NULL, *pll;
     304        struct pll *subset, *ret = NULL, *new_pll = NULL;
    305305
    306306        if (list == NULL || pack_list_size(list) < n || n == 0)
     
    309309        if (n == 1) {
    310310                while (list) {
    311                         new_pll = xmalloc(sizeof(pll));
     311                        new_pll = xmalloc(sizeof(*new_pll));
    312312                        new_pll->pl = NULL;
    313313                        pack_list_insert(&new_pll->pl, list);
     
    322322                subset = get_permutations(list->next, n - 1);
    323323                while (subset) {
    324                         new_pll = xmalloc(sizeof(pll));
     324                        new_pll = xmalloc(sizeof(*new_pll));
    325325                        new_pll->pl = subset->pl;
    326326                        pack_list_insert(&new_pll->pl, list);
Note: See TracChangeset for help on using the changeset viewer.