mirror of
https://github.com/lbonn/rofi
synced 2024-11-15 08:37:17 +00:00
Issue #388, Try to make history parser more robust against corruption.
This commit is contained in:
parent
88c0a5c888
commit
4dbf2813d0
1 changed files with 14 additions and 4 deletions
|
@ -90,18 +90,28 @@ static _element ** __history_get_element_list ( FILE *fd, unsigned int *length )
|
|||
while ( ( l = getline ( &buffer, &buffer_length, fd ) ) > 0 ) {
|
||||
char * start = NULL;
|
||||
// Skip empty lines.
|
||||
if ( strlen ( buffer ) == 0 ) {
|
||||
if ( l <= 1 ) {
|
||||
continue;
|
||||
}
|
||||
|
||||
long int index = strtol ( buffer, &start, 10 );
|
||||
if ( start == buffer || *start == '\0' ) {
|
||||
continue;
|
||||
}
|
||||
start++;
|
||||
if ( (l - (start-buffer)) < 3) {
|
||||
continue;
|
||||
}
|
||||
// Resize and check.
|
||||
retv = g_realloc ( retv, ( *length + 2 ) * sizeof ( _element* ) );
|
||||
|
||||
retv[( *length )] = g_malloc ( sizeof ( _element ) );
|
||||
|
||||
// remove trailing \n
|
||||
buffer[strlen ( buffer ) - 1] = '\0';
|
||||
buffer[l - 1] = '\0';
|
||||
// Parse the number of times.
|
||||
retv[( *length )]->index = strtol ( buffer, &start, 10 );
|
||||
retv[( *length )]->name = g_strndup ( start + 1, l - 1 - ( start + 1 - buffer ) );
|
||||
retv[( *length )]->index = index;
|
||||
retv[( *length )]->name = g_strndup ( start, l - 1 - ( start - buffer ) );
|
||||
// Force trailing '\0'
|
||||
retv[( *length ) + 1] = NULL;
|
||||
|
||||
|
|
Loading…
Reference in a new issue