Skip to content

Commit

Permalink
Fix VSIUnlink in QgsOgrUtils::stringToFeatureList
Browse files Browse the repository at this point in the history
(cherry picked from commit a8d0889)
  • Loading branch information
p0cisk authored and jef-n committed Oct 8, 2016
1 parent 4e22d24 commit 9ad0482
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/qgsogrutils.cpp
Expand Up @@ -273,7 +273,7 @@ QgsFeatureList QgsOgrUtils::stringToFeatureList( const QString& string, const Qg
}

OGR_DS_Destroy( hDS );
VSIUnlink( "/vsimem/clipboard.dat" );
VSIUnlink( TO8( randomFileName ) );

return features;
}
Expand Down

0 comments on commit 9ad0482

Please sign in to comment.