Browse Source

Do not send an empty list of packages to the default policy, fixes #1259

Jordi Boggiano 12 years ago
parent
commit
711179b2b4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/Composer/Installer.php

+ 1 - 1
src/Composer/Installer.php

@@ -449,7 +449,7 @@ class Installer
                     }
 
                     // select prefered package according to policy rules
-                    if ($matches = $policy->selectPreferedPackages($pool, array(), $matches)) {
+                    if ($matches && $matches = $policy->selectPreferedPackages($pool, array(), $matches)) {
                         $newPackage = $pool->literalToPackage($matches[0]);
 
                         if ($newPackage && $newPackage->getSourceReference() !== $package->getSourceReference()) {