0

check the return value of os.Rename (#1288)

This commit is contained in:
Meisam 2021-07-31 23:59:02 +02:00 committed by GitHub
parent 12cbe529de
commit 41a7e8b896
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -100,7 +100,9 @@ func fireThumbnailGenerator(segmentPath string, variantIndex int) error {
return err
} else {
// rename temp file
os.Rename(outputFileTemp, outputFile)
if err := os.Rename(outputFileTemp, outputFile); err != nil {
log.Errorln(err)
}
}
// If YP support is enabled also create an animated GIF preview
@ -131,6 +133,8 @@ func makeAnimatedGifPreview(sourceFile string, outputFile string) {
log.Errorln(err)
} else {
// rename temp file
os.Rename(outputFileTemp, outputFile)
if err := os.Rename(outputFileTemp, outputFile); err != nil {
log.Errorln(err)
}
}
}