From 696c5f4335264dedbdf612ddf73b38d664bc1684 Mon Sep 17 00:00:00 2001 From: Marc-André Lureau Date: Thu, 24 Jan 2013 23:43:05 +0100 Subject: wixl: do not add null/runtime properties --- tools/wixl/builder.vala | 3 +++ 1 file changed, 3 insertions(+) (limited to 'tools') diff --git a/tools/wixl/builder.vala b/tools/wixl/builder.vala index fc511d9..c89093f 100644 --- a/tools/wixl/builder.vala +++ b/tools/wixl/builder.vala @@ -280,6 +280,9 @@ namespace Wixl { } public override void visit_property (WixProperty prop) throws GLib.Error { + if (prop.Value == null) + return; + db.table_property.add (prop.Id, prop.Value); } -- cgit