[gnome-continuous-yocto/gnomeostree-3.28-rocko: 337/8267] classes/base: get_lic_checksum_file_list imporve validaton of url's



commit d28ab584850b715c4b223e5146ecee18d8ae3c97
Author: Aníbal Limón <anibal limon linux intel com>
Date:   Wed May 11 11:41:55 2016 -0500

    classes/base: get_lic_checksum_file_list imporve validaton of url's
    
    When specify an URL different that supported file:// the function
    returns an empty path causing an exception without notice the user
    that the URL is Malformed.
    
    [YOCTO #9211]
    
    (From OE-Core rev: 6c28251d3d187b60ceb534055dbd8b4fffd06429)
    
    Signed-off-by: Aníbal Limón <anibal limon linux intel com>
    Signed-off-by: Richard Purdie <richard purdie linuxfoundation org>

 meta/classes/base.bbclass |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)
---
diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass
index a7ca3a6..c3c2669 100644
--- a/meta/classes/base.bbclass
+++ b/meta/classes/base.bbclass
@@ -105,6 +105,9 @@ def get_lic_checksum_file_list(d):
         # any others should be covered by SRC_URI.
         try:
             path = bb.fetch.decodeurl(url)[2]
+            if not path:
+                raise bb.fetch.MalformedUrl(url)
+
             if path[0] == '/':
                 if path.startswith(tmpdir):
                     continue


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]