Skip to content

Commit

Permalink
エスケープシーケンスの処理でエラーが出たら、ポインタを進めないように修正
Browse files Browse the repository at this point in the history
  • Loading branch information
niisaka committed Jun 27, 2013
1 parent a1a61c0 commit 58d72b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion EpgDataCap3/EpgDataCap3/ARIB8CharDecode.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1148,7 +1148,7 @@ BOOL CARIB8CharDecode::ESC( const BYTE* pbSrc, DWORD* pdwReadSize )
dwReadSize = 1;
}else{
//未サポート
dwReadSize = 1;
dwReadSize = 0;
*pdwReadSize = dwReadSize;
return TRUE; // 未知のエスケープはとりあえず無視
}
Expand Down

0 comments on commit 58d72b8

Please sign in to comment.