mirror of
git://git.code.sf.net/p/cdesktopenv/code
synced 2025-02-15 04:32:24 +00:00
dtinfo/OutlineListViewMotif.C: coverity CID 87754; memset truncated
This commit is contained in:
parent
2c2fb1151d
commit
05773d7499
1 changed files with 1 additions and 1 deletions
|
@ -334,7 +334,7 @@ OutlineListView::create_xm_string (OutlineElement *oe, int base_level,
|
||||||
}
|
}
|
||||||
p++ ;
|
p++ ;
|
||||||
}
|
}
|
||||||
memset (p, OLIAS_PLACEHOLDER_ICON, oe->level() - base_level);
|
memset (p, (unsigned char)OLIAS_PLACEHOLDER_ICON, oe->level() - base_level);
|
||||||
|
|
||||||
unsigned int pos = oe->level() - base_level + track;
|
unsigned int pos = oe->level() - base_level + track;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue