-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | libopie2/opiecore/device/odevice.cpp | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -4,8 +4,9 @@ ---------- * n.a. - scale O-Menu-Applets appropriately (mickeyl) * #1535 - Missing line break and unnecessary location shown with Today-Calendar plugin (deller) * n.a. - always show volume and wireless applet popups inside visible screen (deller) + * #1565 - crash-fix in odevice.cpp while scanning the distribution table (deller) 2005-03-25 Opie 1.2.0 Fixed Bugs diff --git a/libopie2/opiecore/device/odevice.cpp b/libopie2/opiecore/device/odevice.cpp index af77ed1..fcdbf45 100644 --- a/libopie2/opiecore/device/odevice.cpp +++ b/libopie2/opiecore/device/odevice.cpp @@ -190,9 +190,9 @@ ODevice::ODevice() // New distribution detection code first checks for legacy distributions, // identified by /etc/familiar-version or /etc/oz_version. // Then check for OpenEmbedded and lastly, read /etc/issue - for ( unsigned int i = 0; i < sizeof distributions; ++i ) + for ( unsigned int i = 0; i < sizeof(distributions)/sizeof(ODistribution); ++i ) { if ( QFile::exists( distributions[i].sysvfile ) ) { d->m_systemstr = distributions[i].sysstr; |