Style: Enforce braces around if blocks and loops
Using clang-tidy's `readability-braces-around-statements`. https://clang.llvm.org/extra/clang-tidy/checks/readability-braces-around-statements.html
This commit is contained in:
parent
07bc4e2f96
commit
0ee0fa42e6
683 changed files with 22803 additions and 12225 deletions
|
|
@ -127,8 +127,9 @@ void MIDIDriverALSAMidi::thread_func(void *p_udata) {
|
|||
Error MIDIDriverALSAMidi::open() {
|
||||
void **hints;
|
||||
|
||||
if (snd_device_name_hint(-1, "rawmidi", &hints) < 0)
|
||||
if (snd_device_name_hint(-1, "rawmidi", &hints) < 0) {
|
||||
return ERR_CANT_OPEN;
|
||||
}
|
||||
|
||||
int i = 0;
|
||||
for (void **n = hints; *n != nullptr; n++) {
|
||||
|
|
@ -142,8 +143,9 @@ Error MIDIDriverALSAMidi::open() {
|
|||
}
|
||||
}
|
||||
|
||||
if (name != nullptr)
|
||||
if (name != nullptr) {
|
||||
free(name);
|
||||
}
|
||||
}
|
||||
snd_device_name_free_hint(hints);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue