Explorar el Código

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

Jordi Boggiano hace 12 años
padre
commit
711179b2b4
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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()) {