OSGeo / grass

GRASS GIS - free and open-source geospatial processing engine
https://grass.osgeo.org
Other
828 stars 301 forks source link

i.landsat.acca: Fix uninitialized variable issue in main.c #3958

Closed ShubhamDesai closed 3 months ago

ShubhamDesai commented 3 months ago

Fix uninitialized variable issue in i.landsat.acca

This pull request addresses an issue in imagery/i.landsat.acca/main.c where the variable band[i].name was uninitialized before being used. The fix involves initializing the first character of band[i].name to '\0' to ensure it is a valid string before passing it to sprintf.

Changes: