This website works better with JavaScript.
Home
Help
Sign In
DISTRHO
/
DPF
mirror of
https://github.com/DISTRHO/DPF
Watch
1
Star
0
Fork
0
Code
Releases
0
Activity
Browse Source
Make a pointer const
pull/278/head
Jean Pierre Cimalando
4 years ago
parent
4c39d3b472
commit
41df6562fb
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
distrho/src/DistrhoUILV2.cpp
+ 1
- 1
distrho/src/DistrhoUILV2.cpp
View File
@@ -289,7 +289,7 @@ protected:
// reserve atom space
const size_t atomSize = sizeof(LV2_Atom) + msgSize;
char*
atomBuf = (char*)malloc(atomSize);
char*
const
atomBuf = (char*)malloc(atomSize);
std::memset(atomBuf, 0, atomSize);
// set atom info
Write
Preview
Loading…
Cancel
Save