mirror of
git://sourceware.org/git/lvm2.git
synced 2025-01-04 09:18:36 +03:00
libdm: init char array
When non-root uses dm_check_version() it's been printing some unit values from stack. So always init those vars.
This commit is contained in:
parent
e09ee21fd4
commit
ed2a0560ad
@ -1,5 +1,6 @@
|
|||||||
Version 1.02.91 -
|
Version 1.02.91 -
|
||||||
====================================
|
====================================
|
||||||
|
Don't print uninitialized stack bytes when non-root uses dm_check_version().
|
||||||
Fix selection criteria to not match reserved values when using >, <, >=, <.
|
Fix selection criteria to not match reserved values when using >, <, >=, <.
|
||||||
Add DM_LIST_HEAD_INIT macro to libdevmapper.h
|
Add DM_LIST_HEAD_INIT macro to libdevmapper.h
|
||||||
Fix dm_is_dm_major to not issue error about missing /proc lines for dm module.
|
Fix dm_is_dm_major to not issue error about missing /proc lines for dm module.
|
||||||
|
@ -544,7 +544,7 @@ static int _check_version(char *version, size_t size, int log_suppress)
|
|||||||
*/
|
*/
|
||||||
int dm_check_version(void)
|
int dm_check_version(void)
|
||||||
{
|
{
|
||||||
char libversion[64], dmversion[64];
|
char libversion[64] = "", dmversion[64] = "";
|
||||||
const char *compat = "";
|
const char *compat = "";
|
||||||
|
|
||||||
if (_version_checked)
|
if (_version_checked)
|
||||||
|
Loading…
Reference in New Issue
Block a user