summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/wixl/builder.vala3
1 files changed, 3 insertions, 0 deletions
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);
}