Bug 247854 - The 'Size' column in Dolphin reports "2,147,483,647 items" with all listed directories.
Summary: The 'Size' column in Dolphin reports "2,147,483,647 items" with all listed di...
Status: RESOLVED UNMAINTAINED
Alias: None
Product: kdelibs
Classification: Unmaintained
Component: general (show other bugs)
Version: unspecified
Platform: Compiled Sources Solaris
: NOR normal
Target Milestone: ---
Assignee: kdelibs bugs
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-08-14 16:23 UTC by Jan Hnatek
Modified: 2021-07-12 11:12 UTC (History)
2 users (show)

See Also:
Latest Commit:
Version Fixed In:
Sentry Crash Report:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Jan Hnatek 2010-08-14 16:23:08 UTC
Version:           unspecified (using KDE 4.5.0) 
OS:                Solaris

The problem is in kdirmodel.cpp and initial m_childCount value.

It seems that the constructor of KDirModelNode should set its m_childCount to KDirModel:ChildCountUnknown (== -1) so that it could be determined to be set to an actual value during the first read of the directory.

However the statement
  int m_childCount:31;
in the KDirModelNode class definition causes m_childCount to have a value of 2147483647 on Solaris, which is then passed on as a number of items in the directory.

--- kdirmodel.cpp.orig  2010-08-14 14:08:47.600811777 +0000
+++ kdirmodel.cpp       2010-08-14 14:02:08.221257739 +0000
@@ -112,7 +112,7 @@
     }
 
 private:
-    int m_childCount:31;
+    int m_childCount;//:31;
     bool m_populated:1;
 };
 
@@ -703,6 +703,7 @@
             else {
                 KDirModelDirNode* dirNode = static_cast<KDirModelDirNode *>(node);
                 int count = dirNode->childCount();
+// here count == 2147483647 and ChildCountUnknown == -1 on Solaris, initially -> never true
                 if (count == ChildCountUnknown && item.isReadable()) {
                     const QString path = item.localPath();
                     if (!path.isEmpty()) {
@@ -743,7 +744,7 @@
                             ::closedir(dir);
                         }
 #endif
-                        //kDebug(7008) << "child count for " << path << ":" << count;
+                        kDebug(7008) << "child count for " << path << ":" << count;
                         dirNode->setChildCount(count);
                     }
                 }
------------------------------------>8---

Reproducible: Always

Steps to Reproduce:
Run dolphin on Solaris and select 'Details' view.

Actual Results:  
The 'Size' column of 'Details' view reports "2,147,483,647 items" with all listed directories.

Expected Results:  
The 'Size' column will report correct number of entries for each subdirectory.
Comment 1 Andrew Crouthamel 2018-11-05 03:11:30 UTC
Dear Bug Submitter,

This bug has been stagnant for a long time. Could you help us out and re-test if the bug is valid in the latest version? I am setting the status to NEEDSINFO pending your response, please change the Status back to REPORTED when you respond.

Thank you for helping us make KDE software even better for everyone!
Comment 2 Andrew Crouthamel 2018-11-17 04:50:57 UTC
Dear Bug Submitter,

This is a reminder that this bug has been stagnant for a long time. Could you help us out and re-test if the bug is valid in the latest version? This bug will be moved back to REPORTED Status for manual review later, which may take a while. If you are able to, please lend us a hand.

Thank you for helping us make KDE software even better for everyone!
Comment 3 groot 2021-07-12 11:12:25 UTC
(this was for kdelibs4, the corresponding code for KF5 is totally different)