author | mickeyl <mickeyl> | 2003-12-06 16:21:35 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2003-12-06 16:21:35 (UTC) |
commit | 2d793ca674944241480f6939814e3f61d0a0e0fb (patch) (side-by-side diff) | |
tree | b5b99750e52557185592601eff8c4776fbd70c00 | |
parent | efb9bf44691e6555a45f0a45f570eb56f1b180d3 (diff) | |
download | opie-2d793ca674944241480f6939814e3f61d0a0e0fb.zip opie-2d793ca674944241480f6939814e3f61d0a0e0fb.tar.gz opie-2d793ca674944241480f6939814e3f61d0a0e0fb.tar.bz2 |
fix display bug for usage column
-rw-r--r-- | noncore/settings/sysinfo/modulesinfo.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/noncore/settings/sysinfo/modulesinfo.cpp b/noncore/settings/sysinfo/modulesinfo.cpp index 8def0d6..0bf51e8 100644 --- a/noncore/settings/sysinfo/modulesinfo.cpp +++ b/noncore/settings/sysinfo/modulesinfo.cpp @@ -112,6 +112,8 @@ void ModulesInfo::updateData() QListViewItem *newitem; QListViewItem *selecteditem = 0x0; while ( true ) { + modname[0] = '\0'; + usage[0] = '\0'; int success = fscanf( procfile, "%s%d%d%[^\n]", modname, &modsize, &usecount, usage ); if ( success == EOF ) |