Skip to content

Commit 9ad0482

Browse files
p0ciskjef-n
authored andcommitted
Fix VSIUnlink in QgsOgrUtils::stringToFeatureList
(cherry picked from commit a8d0889)
1 parent 4e22d24 commit 9ad0482

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/qgsogrutils.cpp

+1-1
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)