mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-04-06 06:12:12 +02:00
17 lines
417 B
Diff
17 lines
417 B
Diff
Author: psykose <alice@ayaya.dev>
|
|
Summary: fix werror=format-security
|
|
Upstream: No
|
|
----
|
|
|
|
--- a/contrib/gdal/gdalbridge.c
|
|
+++ b/contrib/gdal/gdalbridge.c
|
|
@@ -125,7 +125,7 @@
|
|
|
|
if( pfnTest == NULL )
|
|
{
|
|
- sprintf( szPath, papszSOFilenames[iSOFile] );
|
|
+ sprintf( szPath, "%s", papszSOFilenames[iSOFile] );
|
|
pfnTest = GBGetSymbol( szPath, "GDALOpen" );
|
|
}
|
|
}
|