チケット #45689

sdl2: redraw_ibutton() return value

登録: 2022-09-23 13:00 最終更新: 2023-01-06 07:41

報告者:
担当者:
チケットの種類:
状況:
完了
コンポーネント:
マイルストーン:
優先度:
5 - 中
重要度:
5 - 中
解決法:
修正済み
ファイル:
2

詳細

redraw_ibutton() header says: "function return (-1) if there are no Icon nor Text. Else return 0."

In reality there's also a return like this:

ret = alphablit(pIcon, NULL, pIButton->dst->surface, &dest, 255);
if (ret) {

FREESURFACE(pText);
return ret - 10;

}

I guess that should return just '-1'. As any non-zero alphablit() return value is considered an error, above can even result in 10 - 10 = 0, like there was no error at all from redraw_ibutton()

Further, there's another alphablit() call where the success is not checked at all.

チケットの履歴 (6 件中 3 件表示)

2022-09-23 13:00 更新者: cazfi
  • 新しいチケット "sdl2: redraw_ibutton() return value" が作成されました
2022-11-29 07:24 更新者: cazfi
コメント

Reply To cazfi

As any non-zero alphablit() return value is considered an error, above can even result in 10 - 10 = 0, like there was no error at all from redraw_ibutton()

That makes this an actual bug, not just a thing to clean up.

2022-12-31 10:31 更新者: cazfi
  • 担当者(未割り当て) から cazfi に更新されました
  • 解決法なし から 受領 に更新されました
2023-01-06 07:41 更新者: cazfi
  • 状況オープン から 完了 に更新されました
  • 解決法受領 から 修正済み に更新されました

編集

このチケットにコメントを追加するには、ログインが必要です » ログインする