Re: [FFmpeg-devel] [PATCH 07/11] cbs: Remove useless initializations

2019-05-28 Thread Mark Thompson
On 22/05/2019 02:04, Andreas Rheinhardt wrote: > Up until now, a temporary variable was used and initialized every time a > value was read in CBS; if reading turned out to be successfull, this > value was overwritten (without having ever been looked at) with the > value read if reading was successf

[FFmpeg-devel] [PATCH 07/11] cbs: Remove useless initializations

2019-05-21 Thread Andreas Rheinhardt
Up until now, a temporary variable was used and initialized every time a value was read in CBS; if reading turned out to be successfull, this value was overwritten (without having ever been looked at) with the value read if reading was successfull; on failure the variable wasn't touched either. The