Эх сурвалжийг харах

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

Jordi Boggiano 12 жил өмнө
parent
commit
711179b2b4

+ 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()) {