This website works better with JavaScript.
Home
Help
Sign In
linuxaudio
/
new-session-manager
mirror of
https://github.com/linuxaudio/new-session-manager
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
17
Wiki
Activity
Browse Source
Fix invalid read found by valgrind.
tags/non-daw-v1.1.0
Jonathan Moore Liles
17 years ago
parent
614f716726
commit
2881479cc2
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
Timeline/Loggable.C
+ 1
- 1
Timeline/Loggable.C
View File
@@ -129,7 +129,7 @@ Loggable::escape ( const char *s )
{
static char r[512];
for ( size_t i = 0; i < sizeof( r ); ++i, ++s )
for ( size_t i = 0;
*s &&
i < sizeof( r ); ++i, ++s )
{
if ( '\n' == *s )
{
Write
Preview
Loading…
Cancel
Save