Skip to content

Commit ffa2bc4

Browse files
p0ciskjef-n
authored andcommittedOct 8, 2016
Fix VSIUnlink in QgsOgrUtils::stringToFeatureList
(cherry picked from commit a8d0889)
1 parent f2d1c2b commit ffa2bc4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/core/qgsogrutils.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ QgsFeatureList QgsOgrUtils::stringToFeatureList( const QString& string, const Qg
273273
}
274274

275275
OGR_DS_Destroy( hDS );
276-
VSIUnlink( "/vsimem/clipboard.dat" );
276+
VSIUnlink( TO8( randomFileName ) );
277277

278278
return features;
279279
}

0 commit comments

Comments
 (0)
Please sign in to comment.