Fix uninitialized variable

This commit is contained in:
Nyall Dawson 2015-02-05 18:31:01 +11:00
parent 73b9569386
commit 249af5fbd2

View File

@ -101,6 +101,7 @@ struct QgsPostgresLayerProperty
property.pkCols = pkCols; property.pkCols = pkCols;
property.nSpCols = nSpCols; property.nSpCols = nSpCols;
property.sql = sql; property.sql = sql;
property.force2d = force2d;
return property; return property;
} }