Re: [FFmpeg-devel] [PATCH 2/4] cbs: Remove useless initializations

2019-06-03 Thread Andreas Rheinhardt
Reimar Döffinger: > On 03.06.2019, at 14:07, Andreas Rheinhardt > wrote: > >> Reimar Döffinger: >>> On 03.06.2019, at 00:37, 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 s

Re: [FFmpeg-devel] [PATCH 2/4] cbs: Remove useless initializations

2019-06-03 Thread Reimar Döffinger
On 03.06.2019, at 14:07, Andreas Rheinhardt wrote: > Reimar Döffinger: >> On 03.06.2019, at 00:37, 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 wa

Re: [FFmpeg-devel] [PATCH 2/4] cbs: Remove useless initializations

2019-06-03 Thread Andreas Rheinhardt
Reimar Döffinger: > On 03.06.2019, at 00:37, 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 >>

Re: [FFmpeg-devel] [PATCH 2/4] cbs: Remove useless initializations

2019-06-02 Thread Reimar Döffinger
On 03.06.2019, at 00:37, 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 s

[FFmpeg-devel] [PATCH 2/4] cbs: Remove useless initializations

2019-06-02 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