Bug 54810 - kword destroys data when space to write is empty
Summary: kword destroys data when space to write is empty
Status: RESOLVED FIXED
Alias: None
Product: koffice
Classification: Applications
Component: general (show other bugs)
Version: 1.x
Platform: Compiled Sources Linux
: HI grave
Target Milestone: ---
Assignee: KOffice Bug Wranglers
URL:
Keywords:
: 76753 (view as bug list)
Depends on:
Blocks:
 
Reported: 2003-02-18 19:12 UTC by Jaime Torres
Modified: 2011-03-07 19:06 UTC (History)
2 users (show)

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Jaime Torres 2003-02-18 19:12:54 UTC
Version:           1.2 post (using KDE KDE 3.1)
Installed from:    Compiled From Sources
Compiler:          gcc 3.2.2 
OS:          Linux

I have a kword document writen on the disk.
the free space on the disk desapears.
I open the document. modify it.
When I write the document, there is no warning about the lack
of free space to write the file, and the file is overwrited
with 0 bytes, losing the data.
The backup file, if it exists, is keeped the first time, but if you do not know this bug, then the second time, it also
disapears. As a result. Work lost.
Comment 1 Nicolas Goutte 2004-03-04 21:32:23 UTC
*** Bug 76753 has been marked as a duplicate of this bug. ***
Comment 2 Nicolas Goutte 2004-03-12 01:56:55 UTC
As in Bugzilla, a loss of data should have a severity of "grave", I am increasing the severity to "grave".

And as a second person has found the same bug, i suppose that it can be considered as confirmed too.

Have a nice day!
Comment 3 Nicolas Goutte 2004-03-16 18:03:15 UTC
Not writing when the disk is full is probably not being KWord-specific only but should touch all main KOffice applications, as the same class handles the basic part of saving.

Also I have increased the priority to "High", as it would probably be nice if it could be fixed for KOffice 1.3.1, if possible.

Have a nice day!
Comment 4 Holger Schröder 2004-03-16 18:15:42 UTC
Hi,

i would recommend to display a warning dialog box, which says that there is no free space on disk, the user should make some free space, and then he should hit the retry button, and koffice would try to save the file again.

thanks, Holger
Comment 5 Nicolas Goutte 2004-03-16 18:24:48 UTC
I suppose that the problem is not really how to react. I suppose that the problem is how to catch the situation of a full partition.

As for a retry, I do not know if it is useful, as a full partition remains full (similar with over-quota.) Mostly a user would probably want to save elsewhere (on a floppy or usb-stick.)

Have a nice day!
Comment 6 David Faure 2004-03-16 18:32:07 UTC
> I suppose that the problem is not really how to react
Well it's good to agree on this first, before getting into coding mode :)

> As for a retry, I do not know if it is useful, as a full partition remains full (similar with over-quota.)
I don't agree - if I wanted to save and my $HOME was full, I'd erase something
and then click retry. A full partition doesn't remain full if you give the user time to clean up.

Comment 7 Nicolas Goutte 2004-03-16 19:23:21 UTC
On Tuesday 16 March 2004 18:32, David Faure wrote:
> ------- You are receiving this mail because: -------
> You are the assignee for the bug, or are watching the assignee.
>
> http://bugs.kde.org/show_bug.cgi?id=54810
>
>
>
>
> ------- Additional Comments From faure kde org  2004-03-16 18:32 -------
>
> > I suppose that the problem is not really how to react
>
> Well it's good to agree on this first, before getting into coding mode :)
>
> > As for a retry, I do not know if it is useful, as a full partition
> > remains full (similar with over-quota.)
>
> I don't agree - if I wanted to save and my $HOME was full, I'd erase
> something and then click retry. A full partition doesn't remain full if you
> give the user time to clean up.

Well, I do not really care if it can be coded with a "Retry" (as long as there 
is a "cancel" too) and if this code can be ported back. (I had the feeling 
that it could not be easily done so.)

For me, "disk full" is an error like any other. We do not try to recover from 
the other errors. We just tell the user which error has occured. And it is up 
to the user to do something against it (and probably to call File/Save 
again.)

Have a nice day!
 ____________________________________
> koffice mailing list
> koffice@mail.kde.org
> To unsubscribe please visit:
> https://mail.kde.org/mailman/listinfo/koffice

Comment 8 Nicolas Goutte 2004-03-16 19:26:59 UTC
(...)
> > ------- Additional Comments From faure kde org  2004-03-16 18:32 -------
> >
> > > I suppose that the problem is not really how to react
> >
> > Well it's good to agree on this first, before getting into coding mode :)
> >
> > > As for a retry, I do not know if it is useful, as a full partition
> > > remains full (similar with over-quota.)
> >
> > I don't agree - if I wanted to save and my $HOME was full, I'd erase
> > something and then click retry. A full partition doesn't remain full if
> > you give the user time to clean up.
>
> Well, I do not really care if it can be coded with a "Retry" (as long as
> there is a "cancel" too) and if this code can be ported back. (I had the
> feeling that it could not be easily done so.)

Sorry, as it can be misread and to avoid misunderstandings, I tell it clearer: 
I do care about the code being ported back.

(...)

Comment 9 David Faure 2004-03-17 17:19:50 UTC
CVS commit by faure: 

Error checking while saving, e.g. for disk full case.
CCMAIL: 54810@bugs.kde.org


  M +3 -1      kfilterdev.cpp   1.39.2.1
  M +12 -6     kzip.cpp   1.44.2.1


--- kdelibs/kio/kio/kfilterdev.cpp  #1.39:1.39.2.1
@@ -364,6 +364,8 @@ Q_LONG KFilterDev::writeBlock( const cha
                 // Write compressed data to underlying device
                 int size = filter->device()->writeBlock( d->buffer.data(), towrite );
-                if ( size != towrite )
+                if ( size != towrite ) {
                     kdWarning(7005) << "KFilterDev::writeBlock. Could only write " << size << " out of " << towrite << " bytes" << endl;
+                    return 0; // indicate an error (happens on disk full)
+                }
                 //else
                     //kdDebug(7005) << " KFilterDev::writeBlock wrote " << size << " bytes" << endl;

--- kdelibs/kio/kio/kzip.cpp  #1.44:1.44.2.1
@@ -649,5 +649,6 @@ bool KZip::closeArchive()
     for ( ; it.current() ; ++it )
     {   //set crc and compressed size in each local file header
-        device()->at( it.current()->headerStart() + 14 );
+        if ( !device()->at( it.current()->headerStart() + 14 ) )
+            return false;
         //kdDebug(7040) << "closearchive setcrcandcsize: filename: "
         //    << it.current()->path()
@@ -672,5 +673,6 @@ bool KZip::closeArchive()
         buffer[11] = char(myusize >> 24);
 
-        device()->writeBlock( buffer, 12 );
+        if ( device()->writeBlock( buffer, 12 ) != 12 )
+            return false;
     }
     device()->at( atbackup );
@@ -758,5 +760,6 @@ bool KZip::closeArchive()
 
         crc = crc32(crc, (Bytef *)buffer, bufferSize );
-        device()->writeBlock( buffer, bufferSize );
+        if ( device()->writeBlock( buffer, bufferSize ) != bufferSize )
+            return false;
         delete[] buffer;
     }
@@ -804,5 +807,6 @@ bool KZip::closeArchive()
     buffer[ 21 ] = 0;
 
-    device()->writeBlock( buffer, 22);
+    if ( device()->writeBlock( buffer, 22 ) != 22 )
+        return false;
 
     //kdDebug(7040) << "kzip.cpp reached." << endl;
@@ -861,5 +865,8 @@ bool KZip::prepareWriting_impl(const QSt
 
     // set right offset in zip.
-    device()->at( d->m_offset );
+    if ( !device()->at( d->m_offset ) ) {
+        kdWarning(7040) << "prepareWriting_impl: cannot seek in ZIP file. Disk full?" << endl;
+        return false;
+    }
 
     // delete entries in the filelist with the same filename as the one we want
@@ -1129,5 +1136,4 @@ bool KZip::writeData_impl(const char * c
     Q_LONG written = d->m_currentDev->writeBlock( c, i );
     //kdDebug(7040) << "KZip::writeData wrote " << i << " bytes." << endl;
-    Q_ASSERT( written == (Q_LONG)i );
     return written == (Q_LONG)i;
 }


Comment 10 David Faure 2004-03-17 17:41:35 UTC
CVS commit by faure: 

More error checking while saving, to catch e.g. disk full.
The error can happen in many places: while saving the XML, while saving images, while saving the embedded objects, etc.
Backported, but without the i18n changes.
CCMAIL: 54810@bugs.kde.org


  M +33 -26    kofficecore/koDocument.cc   1.287.2.6
  M +12 -8     kofficecore/koPictureCollection.cc   1.15.2.1
  M +5 -3      kofficecore/koPictureCollection.h   1.13.2.1
  M +2 -1      store/koStore.cc   1.42.2.1



Comment 11 David Faure 2004-03-17 22:21:14 UTC
There is now a messagebox when saving and the partition is full,
and there's a statusbar message if autosaving fails (a bit like in xemacs).

However for better error reporting, we could maybe add a "lastErrorMessage" in KZip
like we have in KoDocument.

I'd appreciate user feedback on the current solution though, I think it already
solves the problem quite well.

Comment 12 Jaime Torres 2004-03-18 12:52:11 UTC
I've tested with today (18-03-2004) kdelibs snapshot.
Well, I've only copied the libkio.so.4.2.0

I've tried to write in a full partition with Kwrite and I get a
messagebox saying that "can not write the file because I have no rights or
there
is not enought space" (in my default language: spanish).
Then I tried kword 1.3 and there was no messagebox.

I thinked that the messagebox will be there for every kde application!!!!

Am I missing something ??? Do I need to copy all the kdelibs ????

Now I'm compiling the koffice snapshot and will test again.

Best regards.

> -----Mensaje original-----
> De: David Faure [mailto:faure@kde.org]
> Enviado el: miércoles, 17 de marzo de 2004 22:21
> Para: jtorres@sia.es
> Asunto: [Bug 54810] kword destroys data when space to write is empty 
> 
> 
> ------- You are receiving this mail because: -------
> You reported the bug, or are watching the reporter.
>       
> http://bugs.kde.org/show_bug.cgi?id=54810      
> 
> 
> 
> 
> ------- Additional Comments From faure kde org  2004-03-17 
> 22:21 -------
> There is now a messagebox when saving and the partition is full,
> and there's a statusbar message if autosaving fails (a bit 
> like in xemacs).
> 
> However for better error reporting, we could maybe add a 
> "lastErrorMessage" in KZip
> like we have in KoDocument.
> 
> I'd appreciate user feedback on the current solution though, 
> I think it already
> solves the problem quite well.
> 
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8">
<META NAME="Generator" CONTENT="MS Exchange Server version 5.5.2653.12">
<TITLE>RE: [Bug 54810] kword destroys data when space to write is empty </TITLE>
</HEAD>
<BODY>

<P><FONT SIZE=2>I've tested with today (18-03-2004) kdelibs snapshot.</FONT>
<BR><FONT SIZE=2>Well, I've only copied the libkio.so.4.2.0</FONT>
</P>

<P><FONT SIZE=2>I've tried to write in a full partition with Kwrite and I get a</FONT>
<BR><FONT SIZE=2>messagebox saying that &quot;can not write the file because I have no rights or there</FONT>
<BR><FONT SIZE=2>is not enought space&quot; (in my default language: spanish).</FONT>
<BR><FONT SIZE=2>Then I tried kword 1.3 and there was no messagebox.</FONT>
</P>

<P><FONT SIZE=2>I thinked that the messagebox will be there for every kde application!!!!</FONT>
</P>

<P><FONT SIZE=2>Am I missing something ??? Do I need to copy all the kdelibs ????</FONT>
</P>

<P><FONT SIZE=2>Now I'm compiling the koffice snapshot and will test again.</FONT>
</P>

<P><FONT SIZE=2>Best regards.</FONT>
</P>

<P><FONT SIZE=2>&gt; -----Mensaje original-----</FONT>
<BR><FONT SIZE=2>&gt; De: David Faure [<A HREF="mailto:faure@kde.org">mailto:faure@kde.org</A>]</FONT>
<BR><FONT SIZE=2>&gt; Enviado el: miércoles, 17 de marzo de 2004 22:21</FONT>
<BR><FONT SIZE=2>&gt; Para: jtorres@sia.es</FONT>
<BR><FONT SIZE=2>&gt; Asunto: [Bug 54810] kword destroys data when space to write is empty </FONT>
<BR><FONT SIZE=2>&gt; </FONT>
<BR><FONT SIZE=2>&gt; </FONT>
<BR><FONT SIZE=2>&gt; ------- You are receiving this mail because: -------</FONT>
<BR><FONT SIZE=2>&gt; You reported the bug, or are watching the reporter.</FONT>
<BR><FONT SIZE=2>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </FONT>
<BR><FONT SIZE=2>&gt; <A HREF="http://bugs.kde.org/show_bug.cgi?id=54810" TARGET="_blank">http://bugs.kde.org/show_bug.cgi?id=54810</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </FONT>
<BR><FONT SIZE=2>&gt; </FONT>
<BR><FONT SIZE=2>&gt; </FONT>
<BR><FONT SIZE=2>&gt; </FONT>
<BR><FONT SIZE=2>&gt; </FONT>
<BR><FONT SIZE=2>&gt; ------- Additional Comments From faure kde org&nbsp; 2004-03-17 </FONT>
<BR><FONT SIZE=2>&gt; 22:21 -------</FONT>
<BR><FONT SIZE=2>&gt; There is now a messagebox when saving and the partition is full,</FONT>
<BR><FONT SIZE=2>&gt; and there's a statusbar message if autosaving fails (a bit </FONT>
<BR><FONT SIZE=2>&gt; like in xemacs).</FONT>
<BR><FONT SIZE=2>&gt; </FONT>
<BR><FONT SIZE=2>&gt; However for better error reporting, we could maybe add a </FONT>
<BR><FONT SIZE=2>&gt; &quot;lastErrorMessage&quot; in KZip</FONT>
<BR><FONT SIZE=2>&gt; like we have in KoDocument.</FONT>
<BR><FONT SIZE=2>&gt; </FONT>
<BR><FONT SIZE=2>&gt; I'd appreciate user feedback on the current solution though, </FONT>
<BR><FONT SIZE=2>&gt; I think it already</FONT>
<BR><FONT SIZE=2>&gt; solves the problem quite well.</FONT>
<BR><FONT SIZE=2>&gt; </FONT>
</P>

</BODY>
</HTML>
Comment 13 Nicolas Goutte 2004-03-18 18:54:57 UTC
On Thursday 18 March 2004 12:52, Jaime Torres wrote:
> ------- You are receiving this mail because: -------
> You are on the CC list for the bug, or are watching someone who is.
>
> http://bugs.kde.org/show_bug.cgi?id=54810
>
>
>
>
> ------- Additional Comments From jtorres sia es  2004-03-18 12:52 -------
> I've tested with today (18-03-2004) kdelibs snapshot.
> Well, I've only copied the libkio.so.4.2.0
>
> I've tried to write in a full partition with Kwrite and I get a
> messagebox saying that "can not write the file because I have no rights or
> there
> is not enought space" (in my default language: spanish).
> Then I tried kword 1.3 and there was no messagebox.
>
> I thinked that the messagebox will be there for every kde application!!!!

The patch of the commited change shows that there is not any dialog 
box added to KZip.

So it is up to the application to catch the problem and to report it. (What 
KWrite seems to already do but what KOffice did not.)

>
> Am I missing something ??? Do I need to copy all the kdelibs ????

No, you need the newest KOffice.

>
> Now I'm compiling the koffice snapshot and will test again.
>
> Best regards.

Have a nice day!

>
(...)

Comment 14 Jaime Torres 2004-03-22 15:16:04 UTC
I've tested again with the same kdelibs and koffice-040322.tar.bz2 and
I do not see any messagebox. Indeed, I see the modified bit in the window
name
removed.

Here you are some traces:

QFile::at: Cannot set file position 2018
QFile::at: Cannot set file position 2370
koffice (lib kofficecore): Saving done of url:
file:/usr/local/src/kkdjlskjdfkkkd.kwd
QFile::at: Cannot set file position 14
QFile::at: Cannot set file position 71
QFile::at: Cannot set file position 2032
QFile::at: Cannot set file position 2384
QFile::at: Cannot set file position 3139
koffice (lib kofficecore): Successful Save As!


There is the file, but with size 0.

Should I upgrade the kdelibs up to today ??

Regards.

> -----Mensaje original-----
> De: Nicolas Goutte [mailto:nicolasg@snafu.de]
> Enviado el: jueves, 18 de marzo de 2004 18:55
> Para: jtorres@sia.es
> Asunto: [Bug 54810] kword destroys data when space to write is empty 
> 
> 
> ------- You are receiving this mail because: -------
> You reported the bug, or are watching the reporter.
>       
> http://bugs.kde.org/show_bug.cgi?id=54810      
> 
> 
> 
> 
> ------- Additional Comments From nicolasg snafu de  
> 2004-03-18 18:54 -------
> On Thursday 18 March 2004 12:52, Jaime Torres wrote:
> > ------- You are receiving this mail because: -------
> > You are on the CC list for the bug, or are watching someone who is.
> >
> > http://bugs.kde.org/show_bug.cgi?id=54810
> >
> >
> >
> >
> > ------- Additional Comments From jtorres sia es  2004-03-18 
> 12:52 -------
> > I've tested with today (18-03-2004) kdelibs snapshot.
> > Well, I've only copied the libkio.so.4.2.0
> >
> > I've tried to write in a full partition with Kwrite and I get a
> > messagebox saying that "can not write the file because I 
> have no rights or
> > there
> > is not enought space" (in my default language: spanish).
> > Then I tried kword 1.3 and there was no messagebox.
> >
> > I thinked that the messagebox will be there for every kde 
> application!!!!
> 
> The patch of the commited change shows that there is not any dialog 
> box added to KZip.
> 
> So it is up to the application to catch the problem and to 
> report it. (What 
> KWrite seems to already do but what KOffice did not.)
> 
> >
> > Am I missing something ??? Do I need to copy all the kdelibs ????
> 
> No, you need the newest KOffice.
> 
> >
> > Now I'm compiling the koffice snapshot and will test again.
> >
> > Best regards.
> 
> Have a nice day!
> 
> >
> (...)
> 
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8">
<META NAME="Generator" CONTENT="MS Exchange Server version 5.5.2653.12">
<TITLE>RE: [Bug 54810] kword destroys data when space to write is empty </TITLE>
</HEAD>
<BODY>

<P><FONT SIZE=2>I've tested again with the same kdelibs and koffice-040322.tar.bz2 and</FONT>
<BR><FONT SIZE=2>I do not see any messagebox. Indeed, I see the modified bit in the window name</FONT>
<BR><FONT SIZE=2>removed.</FONT>
</P>

<P><FONT SIZE=2>Here you are some traces:</FONT>
</P>

<P><FONT SIZE=2>QFile::at: Cannot set file position 2018</FONT>
<BR><FONT SIZE=2>QFile::at: Cannot set file position 2370</FONT>
<BR><FONT SIZE=2>koffice (lib kofficecore): Saving done of url: <A HREF="file:/usr/local/src/kkdjlskjdfkkkd.kwd" TARGET="_blank">file:/usr/local/src/kkdjlskjdfkkkd.kwd</A></FONT>
<BR><FONT SIZE=2>QFile::at: Cannot set file position 14</FONT>
<BR><FONT SIZE=2>QFile::at: Cannot set file position 71</FONT>
<BR><FONT SIZE=2>QFile::at: Cannot set file position 2032</FONT>
<BR><FONT SIZE=2>QFile::at: Cannot set file position 2384</FONT>
<BR><FONT SIZE=2>QFile::at: Cannot set file position 3139</FONT>
<BR><FONT SIZE=2>koffice (lib kofficecore): Successful Save As!</FONT>
</P>
<BR>

<P><FONT SIZE=2>There is the file, but with size 0.</FONT>
</P>

<P><FONT SIZE=2>Should I upgrade the kdelibs up to today ??</FONT>
</P>

<P><FONT SIZE=2>Regards.</FONT>
</P>

<P><FONT SIZE=2>&gt; -----Mensaje original-----</FONT>
<BR><FONT SIZE=2>&gt; De: Nicolas Goutte [<A HREF="mailto:nicolasg@snafu.de">mailto:nicolasg@snafu.de</A>]</FONT>
<BR><FONT SIZE=2>&gt; Enviado el: jueves, 18 de marzo de 2004 18:55</FONT>
<BR><FONT SIZE=2>&gt; Para: jtorres@sia.es</FONT>
<BR><FONT SIZE=2>&gt; Asunto: [Bug 54810] kword destroys data when space to write is empty </FONT>
<BR><FONT SIZE=2>&gt; </FONT>
<BR><FONT SIZE=2>&gt; </FONT>
<BR><FONT SIZE=2>&gt; ------- You are receiving this mail because: -------</FONT>
<BR><FONT SIZE=2>&gt; You reported the bug, or are watching the reporter.</FONT>
<BR><FONT SIZE=2>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </FONT>
<BR><FONT SIZE=2>&gt; <A HREF="http://bugs.kde.org/show_bug.cgi?id=54810" TARGET="_blank">http://bugs.kde.org/show_bug.cgi?id=54810</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </FONT>
<BR><FONT SIZE=2>&gt; </FONT>
<BR><FONT SIZE=2>&gt; </FONT>
<BR><FONT SIZE=2>&gt; </FONT>
<BR><FONT SIZE=2>&gt; </FONT>
<BR><FONT SIZE=2>&gt; ------- Additional Comments From nicolasg snafu de&nbsp; </FONT>
<BR><FONT SIZE=2>&gt; 2004-03-18 18:54 -------</FONT>
<BR><FONT SIZE=2>&gt; On Thursday 18 March 2004 12:52, Jaime Torres wrote:</FONT>
<BR><FONT SIZE=2>&gt; &gt; ------- You are receiving this mail because: -------</FONT>
<BR><FONT SIZE=2>&gt; &gt; You are on the CC list for the bug, or are watching someone who is.</FONT>
<BR><FONT SIZE=2>&gt; &gt;</FONT>
<BR><FONT SIZE=2>&gt; &gt; <A HREF="http://bugs.kde.org/show_bug.cgi?id=54810" TARGET="_blank">http://bugs.kde.org/show_bug.cgi?id=54810</A></FONT>
<BR><FONT SIZE=2>&gt; &gt;</FONT>
<BR><FONT SIZE=2>&gt; &gt;</FONT>
<BR><FONT SIZE=2>&gt; &gt;</FONT>
<BR><FONT SIZE=2>&gt; &gt;</FONT>
<BR><FONT SIZE=2>&gt; &gt; ------- Additional Comments From jtorres sia es&nbsp; 2004-03-18 </FONT>
<BR><FONT SIZE=2>&gt; 12:52 -------</FONT>
<BR><FONT SIZE=2>&gt; &gt; I've tested with today (18-03-2004) kdelibs snapshot.</FONT>
<BR><FONT SIZE=2>&gt; &gt; Well, I've only copied the libkio.so.4.2.0</FONT>
<BR><FONT SIZE=2>&gt; &gt;</FONT>
<BR><FONT SIZE=2>&gt; &gt; I've tried to write in a full partition with Kwrite and I get a</FONT>
<BR><FONT SIZE=2>&gt; &gt; messagebox saying that &quot;can not write the file because I </FONT>
<BR><FONT SIZE=2>&gt; have no rights or</FONT>
<BR><FONT SIZE=2>&gt; &gt; there</FONT>
<BR><FONT SIZE=2>&gt; &gt; is not enought space&quot; (in my default language: spanish).</FONT>
<BR><FONT SIZE=2>&gt; &gt; Then I tried kword 1.3 and there was no messagebox.</FONT>
<BR><FONT SIZE=2>&gt; &gt;</FONT>
<BR><FONT SIZE=2>&gt; &gt; I thinked that the messagebox will be there for every kde </FONT>
<BR><FONT SIZE=2>&gt; application!!!!</FONT>
<BR><FONT SIZE=2>&gt; </FONT>
<BR><FONT SIZE=2>&gt; The patch of the commited change shows that there is not any dialog </FONT>
<BR><FONT SIZE=2>&gt; box added to KZip.</FONT>
<BR><FONT SIZE=2>&gt; </FONT>
<BR><FONT SIZE=2>&gt; So it is up to the application to catch the problem and to </FONT>
<BR><FONT SIZE=2>&gt; report it. (What </FONT>
<BR><FONT SIZE=2>&gt; KWrite seems to already do but what KOffice did not.)</FONT>
<BR><FONT SIZE=2>&gt; </FONT>
<BR><FONT SIZE=2>&gt; &gt;</FONT>
<BR><FONT SIZE=2>&gt; &gt; Am I missing something ??? Do I need to copy all the kdelibs ????</FONT>
<BR><FONT SIZE=2>&gt; </FONT>
<BR><FONT SIZE=2>&gt; No, you need the newest KOffice.</FONT>
<BR><FONT SIZE=2>&gt; </FONT>
<BR><FONT SIZE=2>&gt; &gt;</FONT>
<BR><FONT SIZE=2>&gt; &gt; Now I'm compiling the koffice snapshot and will test again.</FONT>
<BR><FONT SIZE=2>&gt; &gt;</FONT>
<BR><FONT SIZE=2>&gt; &gt; Best regards.</FONT>
<BR><FONT SIZE=2>&gt; </FONT>
<BR><FONT SIZE=2>&gt; Have a nice day!</FONT>
<BR><FONT SIZE=2>&gt; </FONT>
<BR><FONT SIZE=2>&gt; &gt;</FONT>
<BR><FONT SIZE=2>&gt; (...)</FONT>
<BR><FONT SIZE=2>&gt; </FONT>
</P>

</BODY>
</HTML>
Comment 15 Jaime Torres 2004-03-22 15:20:51 UTC
I forgot!

The partition is not full for root, but is full for a normal user!!!

Regards.

> -----Mensaje original-----
> De: Jaime Torres [mailto:jtorres@sia.es]
> Enviado el: lunes, 22 de marzo de 2004 15:16
> Para: jtorres@sia.es
> Asunto: [Bug 54810] kword destroys data when space to write is empty 
> 
> 
> ------- You are receiving this mail because: -------
> You reported the bug, or are watching the reporter.
>       
> http://bugs.kde.org/show_bug.cgi?id=54810      
> 
> 
> 
> 
> ------- Additional Comments From jtorres sia es  2004-03-22 
> 15:16 -------
> I've tested again with the same kdelibs and koffice-040322.tar.bz2 and
> I do not see any messagebox. Indeed, I see the modified bit 
> in the window
> name
> removed.
> 
> Here you are some traces:
> 
> QFile::at: Cannot set file position 2018
> QFile::at: Cannot set file position 2370
> koffice (lib kofficecore): Saving done of url:
> file:/usr/local/src/kkdjlskjdfkkkd.kwd
> QFile::at: Cannot set file position 14
> QFile::at: Cannot set file position 71
> QFile::at: Cannot set file position 2032
> QFile::at: Cannot set file position 2384
> QFile::at: Cannot set file position 3139
> koffice (lib kofficecore): Successful Save As!
> 
> 
> There is the file, but with size 0.
> 
> Should I upgrade the kdelibs up to today ??
> 
> Regards.
> 
> > -----Mensaje original-----
> > De: Nicolas Goutte [mailto:nicolasg snafu de]
> > Enviado el: jueves, 18 de marzo de 2004 18:55
> > Para: jtorres sia es
> > Asunto: [Bug 54810] kword destroys data when space to write 
> is empty 
> > 
> > 
> > ------- You are receiving this mail because: -------
> > You reported the bug, or are watching the reporter.
> >       
> > http://bugs.kde.org/show_bug.cgi?id=54810      
> > 
> > 
> > 
> > 
> > ------- Additional Comments From nicolasg snafu de  
> > 2004-03-18 18:54 -------
> > On Thursday 18 March 2004 12:52, Jaime Torres wrote:
> > > ------- You are receiving this mail because: -------
> > > You are on the CC list for the bug, or are watching 
> someone who is.
> > >
> > > http://bugs.kde.org/show_bug.cgi?id=54810
> > >
> > >
> > >
> > >
> > > ------- Additional Comments From jtorres sia es  2004-03-18 
> > 12:52 -------
> > > I've tested with today (18-03-2004) kdelibs snapshot.
> > > Well, I've only copied the libkio.so.4.2.0
> > >
> > > I've tried to write in a full partition with Kwrite and I get a
> > > messagebox saying that "can not write the file because I 
> > have no rights or
> > > there
> > > is not enought space" (in my default language: spanish).
> > > Then I tried kword 1.3 and there was no messagebox.
> > >
> > > I thinked that the messagebox will be there for every kde 
> > application!!!!
> > 
> > The patch of the commited change shows that there is not any dialog 
> > box added to KZip.
> > 
> > So it is up to the application to catch the problem and to 
> > report it. (What 
> > KWrite seems to already do but what KOffice did not.)
> > 
> > >
> > > Am I missing something ??? Do I need to copy all the kdelibs ????
> > 
> > No, you need the newest KOffice.
> > 
> > >
> > > Now I'm compiling the koffice snapshot and will test again.
> > >
> > > Best regards.
> > 
> > Have a nice day!
> > 
> > >
> > (...)
> > 
> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
> <HTML>
> <HEAD>
> <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8">
> <META NAME="Generator" CONTENT="MS Exchange Server version 
> 5.5.2653.12">
> <TITLE>RE: [Bug 54810] kword destroys data when space to 
> write is empty </TITLE>
> </HEAD>
> <BODY>
> 
> <P><FONT SIZE=2>I've tested again with the same kdelibs and 
> koffice-040322.tar.bz2 and</FONT>
> <BR><FONT SIZE=2>I do not see any messagebox. Indeed, I see 
> the modified bit in the window name</FONT>
> <BR><FONT SIZE=2>removed.</FONT>
> </P>
> 
> <P><FONT SIZE=2>Here you are some traces:</FONT>
> </P>
> 
> <P><FONT SIZE=2>QFile::at: Cannot set file position 2018</FONT>
> <BR><FONT SIZE=2>QFile::at: Cannot set file position 2370</FONT>
> <BR><FONT SIZE=2>koffice (lib kofficecore): Saving done of 
> url: <A HREF="file:/usr/local/src/kkdjlskjdfkkkd.kwd" 
> TARGET="_blank">file:/usr/local/src/kkdjlskjdfkkkd.kwd</A></FONT>
> <BR><FONT SIZE=2>QFile::at: Cannot set file position 14</FONT>
> <BR><FONT SIZE=2>QFile::at: Cannot set file position 71</FONT>
> <BR><FONT SIZE=2>QFile::at: Cannot set file position 2032</FONT>
> <BR><FONT SIZE=2>QFile::at: Cannot set file position 2384</FONT>
> <BR><FONT SIZE=2>QFile::at: Cannot set file position 3139</FONT>
> <BR><FONT SIZE=2>koffice (lib kofficecore): Successful Save As!</FONT>
> </P>
> <BR>
> 
> <P><FONT SIZE=2>There is the file, but with size 0.</FONT>
> </P>
> 
> <P><FONT SIZE=2>Should I upgrade the kdelibs up to today ??</FONT>
> </P>
> 
> <P><FONT SIZE=2>Regards.</FONT>
> </P>
> 
> <P><FONT SIZE=2>&gt; -----Mensaje original-----</FONT>
> <BR><FONT SIZE=2>&gt; De: Nicolas Goutte [<A 
> HREF="mailto:nicolasg snafu de">mailto:nicolasg snafu de</A>]</FONT>
> <BR><FONT SIZE=2>&gt; Enviado el: jueves, 18 de marzo de 2004 
> 18:55</FONT>
> <BR><FONT SIZE=2>&gt; Para: jtorres sia es</FONT>
> <BR><FONT SIZE=2>&gt; Asunto: [Bug 54810] kword destroys data 
> when space to write is empty </FONT>
> <BR><FONT SIZE=2>&gt; </FONT>
> <BR><FONT SIZE=2>&gt; </FONT>
> <BR><FONT SIZE=2>&gt; ------- You are receiving this mail 
> because: -------</FONT>
> <BR><FONT SIZE=2>&gt; You reported the bug, or are watching 
> the reporter.</FONT>
> <BR><FONT SIZE=2>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </FONT>
> <BR><FONT SIZE=2>&gt; <A 
> HREF="http://bugs.kde.org/show_bug.cgi?id=54810" 
> TARGET="_blank">http://bugs.kde.org/show_bug.cgi?id=54810</A>&
> nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </FONT>
> <BR><FONT SIZE=2>&gt; </FONT>
> <BR><FONT SIZE=2>&gt; </FONT>
> <BR><FONT SIZE=2>&gt; </FONT>
> <BR><FONT SIZE=2>&gt; </FONT>
> <BR><FONT SIZE=2>&gt; ------- Additional Comments From 
> nicolasg snafu de&nbsp; </FONT>
> <BR><FONT SIZE=2>&gt; 2004-03-18 18:54 -------</FONT>
> <BR><FONT SIZE=2>&gt; On Thursday 18 March 2004 12:52, Jaime 
> Torres wrote:</FONT>
> <BR><FONT SIZE=2>&gt; &gt; ------- You are receiving this 
> mail because: -------</FONT>
> <BR><FONT SIZE=2>&gt; &gt; You are on the CC list for the 
> bug, or are watching someone who is.</FONT>
> <BR><FONT SIZE=2>&gt; &gt;</FONT>
> <BR><FONT SIZE=2>&gt; &gt; <A 
> HREF="http://bugs.kde.org/show_bug.cgi?id=54810" 
> TARGET="_blank">http://bugs.kde.org/show_bug.cgi?id=54810</A></FONT>
> <BR><FONT SIZE=2>&gt; &gt;</FONT>
> <BR><FONT SIZE=2>&gt; &gt;</FONT>
> <BR><FONT SIZE=2>&gt; &gt;</FONT>
> <BR><FONT SIZE=2>&gt; &gt;</FONT>
> <BR><FONT SIZE=2>&gt; &gt; ------- Additional Comments From 
> jtorres sia es&nbsp; 2004-03-18 </FONT>
> <BR><FONT SIZE=2>&gt; 12:52 -------</FONT>
> <BR><FONT SIZE=2>&gt; &gt; I've tested with today 
> (18-03-2004) kdelibs snapshot.</FONT>
> <BR><FONT SIZE=2>&gt; &gt; Well, I've only copied the 
> libkio.so.4.2.0</FONT>
> <BR><FONT SIZE=2>&gt; &gt;</FONT>
> <BR><FONT SIZE=2>&gt; &gt; I've tried to write in a full 
> partition with Kwrite and I get a</FONT>
> <BR><FONT SIZE=2>&gt; &gt; messagebox saying that &quot;can 
> not write the file because I </FONT>
> <BR><FONT SIZE=2>&gt; have no rights or</FONT>
> <BR><FONT SIZE=2>&gt; &gt; there</FONT>
> <BR><FONT SIZE=2>&gt; &gt; is not enought space&quot; (in my 
> default language: spanish).</FONT>
> <BR><FONT SIZE=2>&gt; &gt; Then I tried kword 1.3 and there 
> was no messagebox.</FONT>
> <BR><FONT SIZE=2>&gt; &gt;</FONT>
> <BR><FONT SIZE=2>&gt; &gt; I thinked that the messagebox will 
> be there for every kde </FONT>
> <BR><FONT SIZE=2>&gt; application!!!!</FONT>
> <BR><FONT SIZE=2>&gt; </FONT>
> <BR><FONT SIZE=2>&gt; The patch of the commited change shows 
> that there is not any dialog </FONT>
> <BR><FONT SIZE=2>&gt; box added to KZip.</FONT>
> <BR><FONT SIZE=2>&gt; </FONT>
> <BR><FONT SIZE=2>&gt; So it is up to the application to catch 
> the problem and to </FONT>
> <BR><FONT SIZE=2>&gt; report it. (What </FONT>
> <BR><FONT SIZE=2>&gt; KWrite seems to already do but what 
> KOffice did not.)</FONT>
> <BR><FONT SIZE=2>&gt; </FONT>
> <BR><FONT SIZE=2>&gt; &gt;</FONT>
> <BR><FONT SIZE=2>&gt; &gt; Am I missing something ??? Do I 
> need to copy all the kdelibs ????</FONT>
> <BR><FONT SIZE=2>&gt; </FONT>
> <BR><FONT SIZE=2>&gt; No, you need the newest KOffice.</FONT>
> <BR><FONT SIZE=2>&gt; </FONT>
> <BR><FONT SIZE=2>&gt; &gt;</FONT>
> <BR><FONT SIZE=2>&gt; &gt; Now I'm compiling the koffice 
> snapshot and will test again.</FONT>
> <BR><FONT SIZE=2>&gt; &gt;</FONT>
> <BR><FONT SIZE=2>&gt; &gt; Best regards.</FONT>
> <BR><FONT SIZE=2>&gt; </FONT>
> <BR><FONT SIZE=2>&gt; Have a nice day!</FONT>
> <BR><FONT SIZE=2>&gt; </FONT>
> <BR><FONT SIZE=2>&gt; &gt;</FONT>
> <BR><FONT SIZE=2>&gt; (...)</FONT>
> <BR><FONT SIZE=2>&gt; </FONT>
> </P>
> 
> </BODY>
> </HTML>
> 
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8">
<META NAME="Generator" CONTENT="MS Exchange Server version 5.5.2653.12">
<TITLE>RE: [Bug 54810] kword destroys data when space to write is empty </TITLE>
</HEAD>
<BODY>

<P><FONT SIZE=2>I forgot!</FONT>
</P>

<P><FONT SIZE=2>The partition is not full for root, but is full for a normal user!!!</FONT>
</P>

<P><FONT SIZE=2>Regards.</FONT>
</P>

<P><FONT SIZE=2>&gt; -----Mensaje original-----</FONT>
<BR><FONT SIZE=2>&gt; De: Jaime Torres [<A HREF="mailto:jtorres@sia.es">mailto:jtorres@sia.es</A>]</FONT>
<BR><FONT SIZE=2>&gt; Enviado el: lunes, 22 de marzo de 2004 15:16</FONT>
<BR><FONT SIZE=2>&gt; Para: jtorres@sia.es</FONT>
<BR><FONT SIZE=2>&gt; Asunto: [Bug 54810] kword destroys data when space to write is empty </FONT>
<BR><FONT SIZE=2>&gt; </FONT>
<BR><FONT SIZE=2>&gt; </FONT>
<BR><FONT SIZE=2>&gt; ------- You are receiving this mail because: -------</FONT>
<BR><FONT SIZE=2>&gt; You reported the bug, or are watching the reporter.</FONT>
<BR><FONT SIZE=2>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </FONT>
<BR><FONT SIZE=2>&gt; <A HREF="http://bugs.kde.org/show_bug.cgi?id=54810" TARGET="_blank">http://bugs.kde.org/show_bug.cgi?id=54810</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </FONT>
<BR><FONT SIZE=2>&gt; </FONT>
<BR><FONT SIZE=2>&gt; </FONT>
<BR><FONT SIZE=2>&gt; </FONT>
<BR><FONT SIZE=2>&gt; </FONT>
<BR><FONT SIZE=2>&gt; ------- Additional Comments From jtorres sia es&nbsp; 2004-03-22 </FONT>
<BR><FONT SIZE=2>&gt; 15:16 -------</FONT>
<BR><FONT SIZE=2>&gt; I've tested again with the same kdelibs and koffice-040322.tar.bz2 and</FONT>
<BR><FONT SIZE=2>&gt; I do not see any messagebox. Indeed, I see the modified bit </FONT>
<BR><FONT SIZE=2>&gt; in the window</FONT>
<BR><FONT SIZE=2>&gt; name</FONT>
<BR><FONT SIZE=2>&gt; removed.</FONT>
<BR><FONT SIZE=2>&gt; </FONT>
<BR><FONT SIZE=2>&gt; Here you are some traces:</FONT>
<BR><FONT SIZE=2>&gt; </FONT>
<BR><FONT SIZE=2>&gt; QFile::at: Cannot set file position 2018</FONT>
<BR><FONT SIZE=2>&gt; QFile::at: Cannot set file position 2370</FONT>
<BR><FONT SIZE=2>&gt; koffice (lib kofficecore): Saving done of url:</FONT>
<BR><FONT SIZE=2>&gt; <A HREF="file:/usr/local/src/kkdjlskjdfkkkd.kwd" TARGET="_blank">file:/usr/local/src/kkdjlskjdfkkkd.kwd</A></FONT>
<BR><FONT SIZE=2>&gt; QFile::at: Cannot set file position 14</FONT>
<BR><FONT SIZE=2>&gt; QFile::at: Cannot set file position 71</FONT>
<BR><FONT SIZE=2>&gt; QFile::at: Cannot set file position 2032</FONT>
<BR><FONT SIZE=2>&gt; QFile::at: Cannot set file position 2384</FONT>
<BR><FONT SIZE=2>&gt; QFile::at: Cannot set file position 3139</FONT>
<BR><FONT SIZE=2>&gt; koffice (lib kofficecore): Successful Save As!</FONT>
<BR><FONT SIZE=2>&gt; </FONT>
<BR><FONT SIZE=2>&gt; </FONT>
<BR><FONT SIZE=2>&gt; There is the file, but with size 0.</FONT>
<BR><FONT SIZE=2>&gt; </FONT>
<BR><FONT SIZE=2>&gt; Should I upgrade the kdelibs up to today ??</FONT>
<BR><FONT SIZE=2>&gt; </FONT>
<BR><FONT SIZE=2>&gt; Regards.</FONT>
<BR><FONT SIZE=2>&gt; </FONT>
<BR><FONT SIZE=2>&gt; &gt; -----Mensaje original-----</FONT>
<BR><FONT SIZE=2>&gt; &gt; De: Nicolas Goutte [<A HREF="mailto:nicolasg">mailto:nicolasg</A> snafu de]</FONT>
<BR><FONT SIZE=2>&gt; &gt; Enviado el: jueves, 18 de marzo de 2004 18:55</FONT>
<BR><FONT SIZE=2>&gt; &gt; Para: jtorres sia es</FONT>
<BR><FONT SIZE=2>&gt; &gt; Asunto: [Bug 54810] kword destroys data when space to write </FONT>
<BR><FONT SIZE=2>&gt; is empty </FONT>
<BR><FONT SIZE=2>&gt; &gt; </FONT>
<BR><FONT SIZE=2>&gt; &gt; </FONT>
<BR><FONT SIZE=2>&gt; &gt; ------- You are receiving this mail because: -------</FONT>
<BR><FONT SIZE=2>&gt; &gt; You reported the bug, or are watching the reporter.</FONT>
<BR><FONT SIZE=2>&gt; &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </FONT>
<BR><FONT SIZE=2>&gt; &gt; <A HREF="http://bugs.kde.org/show_bug.cgi?id=54810" TARGET="_blank">http://bugs.kde.org/show_bug.cgi?id=54810</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </FONT>
<BR><FONT SIZE=2>&gt; &gt; </FONT>
<BR><FONT SIZE=2>&gt; &gt; </FONT>
<BR><FONT SIZE=2>&gt; &gt; </FONT>
<BR><FONT SIZE=2>&gt; &gt; </FONT>
<BR><FONT SIZE=2>&gt; &gt; ------- Additional Comments From nicolasg snafu de&nbsp; </FONT>
<BR><FONT SIZE=2>&gt; &gt; 2004-03-18 18:54 -------</FONT>
<BR><FONT SIZE=2>&gt; &gt; On Thursday 18 March 2004 12:52, Jaime Torres wrote:</FONT>
<BR><FONT SIZE=2>&gt; &gt; &gt; ------- You are receiving this mail because: -------</FONT>
<BR><FONT SIZE=2>&gt; &gt; &gt; You are on the CC list for the bug, or are watching </FONT>
<BR><FONT SIZE=2>&gt; someone who is.</FONT>
<BR><FONT SIZE=2>&gt; &gt; &gt;</FONT>
<BR><FONT SIZE=2>&gt; &gt; &gt; <A HREF="http://bugs.kde.org/show_bug.cgi?id=54810" TARGET="_blank">http://bugs.kde.org/show_bug.cgi?id=54810</A></FONT>
<BR><FONT SIZE=2>&gt; &gt; &gt;</FONT>
<BR><FONT SIZE=2>&gt; &gt; &gt;</FONT>
<BR><FONT SIZE=2>&gt; &gt; &gt;</FONT>
<BR><FONT SIZE=2>&gt; &gt; &gt;</FONT>
<BR><FONT SIZE=2>&gt; &gt; &gt; ------- Additional Comments From jtorres sia es&nbsp; 2004-03-18 </FONT>
<BR><FONT SIZE=2>&gt; &gt; 12:52 -------</FONT>
<BR><FONT SIZE=2>&gt; &gt; &gt; I've tested with today (18-03-2004) kdelibs snapshot.</FONT>
<BR><FONT SIZE=2>&gt; &gt; &gt; Well, I've only copied the libkio.so.4.2.0</FONT>
<BR><FONT SIZE=2>&gt; &gt; &gt;</FONT>
<BR><FONT SIZE=2>&gt; &gt; &gt; I've tried to write in a full partition with Kwrite and I get a</FONT>
<BR><FONT SIZE=2>&gt; &gt; &gt; messagebox saying that &quot;can not write the file because I </FONT>
<BR><FONT SIZE=2>&gt; &gt; have no rights or</FONT>
<BR><FONT SIZE=2>&gt; &gt; &gt; there</FONT>
<BR><FONT SIZE=2>&gt; &gt; &gt; is not enought space&quot; (in my default language: spanish).</FONT>
<BR><FONT SIZE=2>&gt; &gt; &gt; Then I tried kword 1.3 and there was no messagebox.</FONT>
<BR><FONT SIZE=2>&gt; &gt; &gt;</FONT>
<BR><FONT SIZE=2>&gt; &gt; &gt; I thinked that the messagebox will be there for every kde </FONT>
<BR><FONT SIZE=2>&gt; &gt; application!!!!</FONT>
<BR><FONT SIZE=2>&gt; &gt; </FONT>
<BR><FONT SIZE=2>&gt; &gt; The patch of the commited change shows that there is not any dialog </FONT>
<BR><FONT SIZE=2>&gt; &gt; box added to KZip.</FONT>
<BR><FONT SIZE=2>&gt; &gt; </FONT>
<BR><FONT SIZE=2>&gt; &gt; So it is up to the application to catch the problem and to </FONT>
<BR><FONT SIZE=2>&gt; &gt; report it. (What </FONT>
<BR><FONT SIZE=2>&gt; &gt; KWrite seems to already do but what KOffice did not.)</FONT>
<BR><FONT SIZE=2>&gt; &gt; </FONT>
<BR><FONT SIZE=2>&gt; &gt; &gt;</FONT>
<BR><FONT SIZE=2>&gt; &gt; &gt; Am I missing something ??? Do I need to copy all the kdelibs ????</FONT>
<BR><FONT SIZE=2>&gt; &gt; </FONT>
<BR><FONT SIZE=2>&gt; &gt; No, you need the newest KOffice.</FONT>
<BR><FONT SIZE=2>&gt; &gt; </FONT>
<BR><FONT SIZE=2>&gt; &gt; &gt;</FONT>
<BR><FONT SIZE=2>&gt; &gt; &gt; Now I'm compiling the koffice snapshot and will test again.</FONT>
<BR><FONT SIZE=2>&gt; &gt; &gt;</FONT>
<BR><FONT SIZE=2>&gt; &gt; &gt; Best regards.</FONT>
<BR><FONT SIZE=2>&gt; &gt; </FONT>
<BR><FONT SIZE=2>&gt; &gt; Have a nice day!</FONT>
<BR><FONT SIZE=2>&gt; &gt; </FONT>
<BR><FONT SIZE=2>&gt; &gt; &gt;</FONT>
<BR><FONT SIZE=2>&gt; &gt; (...)</FONT>
<BR><FONT SIZE=2>&gt; &gt; </FONT>
<BR><FONT SIZE=2>&gt; &lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 3.2//EN&quot;&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;HTML&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;HEAD&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;META HTTP-EQUIV=&quot;Content-Type&quot; CONTENT=&quot;text/html; charset=utf-8&quot;&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;META NAME=&quot;Generator&quot; CONTENT=&quot;MS Exchange Server version </FONT>
<BR><FONT SIZE=2>&gt; 5.5.2653.12&quot;&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;TITLE&gt;RE: [Bug 54810] kword destroys data when space to </FONT>
<BR><FONT SIZE=2>&gt; write is empty &lt;/TITLE&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;/HEAD&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BODY&gt;</FONT>
<BR><FONT SIZE=2>&gt; </FONT>
<BR><FONT SIZE=2>&gt; &lt;P&gt;&lt;FONT SIZE=2&gt;I've tested again with the same kdelibs and </FONT>
<BR><FONT SIZE=2>&gt; koffice-040322.tar.bz2 and&lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;I do not see any messagebox. Indeed, I see </FONT>
<BR><FONT SIZE=2>&gt; the modified bit in the window name&lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;removed.&lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;/P&gt;</FONT>
<BR><FONT SIZE=2>&gt; </FONT>
<BR><FONT SIZE=2>&gt; &lt;P&gt;&lt;FONT SIZE=2&gt;Here you are some traces:&lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;/P&gt;</FONT>
<BR><FONT SIZE=2>&gt; </FONT>
<BR><FONT SIZE=2>&gt; &lt;P&gt;&lt;FONT SIZE=2&gt;QFile::at: Cannot set file position 2018&lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;QFile::at: Cannot set file position 2370&lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;koffice (lib kofficecore): Saving done of </FONT>
<BR><FONT SIZE=2>&gt; url: &lt;A HREF=&quot;<A HREF="file:/usr/local/src/kkdjlskjdfkkkd.kwd" TARGET="_blank">file:/usr/local/src/kkdjlskjdfkkkd.kwd</A>&quot; </FONT>
<BR><FONT SIZE=2>&gt; TARGET=&quot;_blank&quot;&gt;<A HREF="file:/usr/local/src/kkdjlskjdfkkkd.kwd" TARGET="_blank">file:/usr/local/src/kkdjlskjdfkkkd.kwd</A>&lt;/A&gt;&lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;QFile::at: Cannot set file position 14&lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;QFile::at: Cannot set file position 71&lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;QFile::at: Cannot set file position 2032&lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;QFile::at: Cannot set file position 2384&lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;QFile::at: Cannot set file position 3139&lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;koffice (lib kofficecore): Successful Save As!&lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;/P&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;</FONT>
<BR><FONT SIZE=2>&gt; </FONT>
<BR><FONT SIZE=2>&gt; &lt;P&gt;&lt;FONT SIZE=2&gt;There is the file, but with size 0.&lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;/P&gt;</FONT>
<BR><FONT SIZE=2>&gt; </FONT>
<BR><FONT SIZE=2>&gt; &lt;P&gt;&lt;FONT SIZE=2&gt;Should I upgrade the kdelibs up to today ??&lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;/P&gt;</FONT>
<BR><FONT SIZE=2>&gt; </FONT>
<BR><FONT SIZE=2>&gt; &lt;P&gt;&lt;FONT SIZE=2&gt;Regards.&lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;/P&gt;</FONT>
<BR><FONT SIZE=2>&gt; </FONT>
<BR><FONT SIZE=2>&gt; &lt;P&gt;&lt;FONT SIZE=2&gt;&amp;gt; -----Mensaje original-----&lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;&amp;gt; De: Nicolas Goutte [&lt;A </FONT>
<BR><FONT SIZE=2>&gt; HREF=&quot;<A HREF="mailto:nicolasg">mailto:nicolasg</A> snafu de&quot;&gt;<A HREF="mailto:nicolasg">mailto:nicolasg</A> snafu de&lt;/A&gt;]&lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;&amp;gt; Enviado el: jueves, 18 de marzo de 2004 </FONT>
<BR><FONT SIZE=2>&gt; 18:55&lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;&amp;gt; Para: jtorres sia es&lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;&amp;gt; Asunto: [Bug 54810] kword destroys data </FONT>
<BR><FONT SIZE=2>&gt; when space to write is empty &lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;&amp;gt; &lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;&amp;gt; &lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;&amp;gt; ------- You are receiving this mail </FONT>
<BR><FONT SIZE=2>&gt; because: -------&lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;&amp;gt; You reported the bug, or are watching </FONT>
<BR><FONT SIZE=2>&gt; the reporter.&lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;&amp;gt; &lt;A </FONT>
<BR><FONT SIZE=2>&gt; HREF=&quot;<A HREF="http://bugs.kde.org/show_bug.cgi?id=54810" TARGET="_blank">http://bugs.kde.org/show_bug.cgi?id=54810</A>&quot; </FONT>
<BR><FONT SIZE=2>&gt; TARGET=&quot;_blank&quot;&gt;<A HREF="http://bugs.kde.org/show_bug.cgi?id=54810" TARGET="_blank">http://bugs.kde.org/show_bug.cgi?id=54810</A>&lt;/A&gt;&amp;</FONT>
<BR><FONT SIZE=2>&gt; nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;&amp;gt; &lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;&amp;gt; &lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;&amp;gt; &lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;&amp;gt; &lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;&amp;gt; ------- Additional Comments From </FONT>
<BR><FONT SIZE=2>&gt; nicolasg snafu de&amp;nbsp; &lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;&amp;gt; 2004-03-18 18:54 -------&lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;&amp;gt; On Thursday 18 March 2004 12:52, Jaime </FONT>
<BR><FONT SIZE=2>&gt; Torres wrote:&lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;&amp;gt; &amp;gt; ------- You are receiving this </FONT>
<BR><FONT SIZE=2>&gt; mail because: -------&lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;&amp;gt; &amp;gt; You are on the CC list for the </FONT>
<BR><FONT SIZE=2>&gt; bug, or are watching someone who is.&lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;&amp;gt; &amp;gt;&lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;&amp;gt; &amp;gt; &lt;A </FONT>
<BR><FONT SIZE=2>&gt; HREF=&quot;<A HREF="http://bugs.kde.org/show_bug.cgi?id=54810" TARGET="_blank">http://bugs.kde.org/show_bug.cgi?id=54810</A>&quot; </FONT>
<BR><FONT SIZE=2>&gt; TARGET=&quot;_blank&quot;&gt;<A HREF="http://bugs.kde.org/show_bug.cgi?id=54810" TARGET="_blank">http://bugs.kde.org/show_bug.cgi?id=54810</A>&lt;/A&gt;&lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;&amp;gt; &amp;gt;&lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;&amp;gt; &amp;gt;&lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;&amp;gt; &amp;gt;&lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;&amp;gt; &amp;gt;&lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;&amp;gt; &amp;gt; ------- Additional Comments From </FONT>
<BR><FONT SIZE=2>&gt; jtorres sia es&amp;nbsp; 2004-03-18 &lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;&amp;gt; 12:52 -------&lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;&amp;gt; &amp;gt; I've tested with today </FONT>
<BR><FONT SIZE=2>&gt; (18-03-2004) kdelibs snapshot.&lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;&amp;gt; &amp;gt; Well, I've only copied the </FONT>
<BR><FONT SIZE=2>&gt; libkio.so.4.2.0&lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;&amp;gt; &amp;gt;&lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;&amp;gt; &amp;gt; I've tried to write in a full </FONT>
<BR><FONT SIZE=2>&gt; partition with Kwrite and I get a&lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;&amp;gt; &amp;gt; messagebox saying that &amp;quot;can </FONT>
<BR><FONT SIZE=2>&gt; not write the file because I &lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;&amp;gt; have no rights or&lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;&amp;gt; &amp;gt; there&lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;&amp;gt; &amp;gt; is not enought space&amp;quot; (in my </FONT>
<BR><FONT SIZE=2>&gt; default language: spanish).&lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;&amp;gt; &amp;gt; Then I tried kword 1.3 and there </FONT>
<BR><FONT SIZE=2>&gt; was no messagebox.&lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;&amp;gt; &amp;gt;&lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;&amp;gt; &amp;gt; I thinked that the messagebox will </FONT>
<BR><FONT SIZE=2>&gt; be there for every kde &lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;&amp;gt; application!!!!&lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;&amp;gt; &lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;&amp;gt; The patch of the commited change shows </FONT>
<BR><FONT SIZE=2>&gt; that there is not any dialog &lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;&amp;gt; box added to KZip.&lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;&amp;gt; &lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;&amp;gt; So it is up to the application to catch </FONT>
<BR><FONT SIZE=2>&gt; the problem and to &lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;&amp;gt; report it. (What &lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;&amp;gt; KWrite seems to already do but what </FONT>
<BR><FONT SIZE=2>&gt; KOffice did not.)&lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;&amp;gt; &lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;&amp;gt; &amp;gt;&lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;&amp;gt; &amp;gt; Am I missing something ??? Do I </FONT>
<BR><FONT SIZE=2>&gt; need to copy all the kdelibs ????&lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;&amp;gt; &lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;&amp;gt; No, you need the newest KOffice.&lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;&amp;gt; &lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;&amp;gt; &amp;gt;&lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;&amp;gt; &amp;gt; Now I'm compiling the koffice </FONT>
<BR><FONT SIZE=2>&gt; snapshot and will test again.&lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;&amp;gt; &amp;gt;&lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;&amp;gt; &amp;gt; Best regards.&lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;&amp;gt; &lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;&amp;gt; Have a nice day!&lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;&amp;gt; &lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;&amp;gt; &amp;gt;&lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;&amp;gt; (...)&lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;BR&gt;&lt;FONT SIZE=2&gt;&amp;gt; &lt;/FONT&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;/P&gt;</FONT>
<BR><FONT SIZE=2>&gt; </FONT>
<BR><FONT SIZE=2>&gt; &lt;/BODY&gt;</FONT>
<BR><FONT SIZE=2>&gt; &lt;/HTML&gt;</FONT>
<BR><FONT SIZE=2>&gt; </FONT>
</P>

</BODY>
</HTML>
Comment 16 David Faure 2004-03-22 17:17:34 UTC
On Monday 22 March 2004 15:16, Jaime Torres wrote:
> I've tested again with the same kdelibs and koffice-040322.tar.bz2
Which kdelibs is that?
Do you have kdelibs/kio/kio/kzip.cpp version 1.47 (or 1.44.2.3) ?

> QFile::at: Cannot set file position 2018
Yes, that's what I was seeing too.

Comment 17 Jaime Torres 2004-03-22 17:34:55 UTC
I'm sorry.

There was the old 3.2.1 libkio linked to libkio.so instead of the new one.

It works as expected now.

Regards.

> -----Mensaje original-----
> De: David Faure [mailto:faure@kde.org]
> Enviado el: lunes, 22 de marzo de 2004 17:18
> Para: jtorres@sia.es
> Asunto: [Bug 54810] kword destroys data when space to write is empty 
> 
> 
> ------- You are receiving this mail because: -------
> You reported the bug, or are watching the reporter.
>       
> http://bugs.kde.org/show_bug.cgi?id=54810      
> 
> 
> 
> 
> ------- Additional Comments From faure kde org  2004-03-22 
> 17:17 -------
> On Monday 22 March 2004 15:16, Jaime Torres wrote:
> > I've tested again with the same kdelibs and koffice-040322.tar.bz2
> Which kdelibs is that?
> Do you have kdelibs/kio/kio/kzip.cpp version 1.47 (or 1.44.2.3) ?
> 
> > QFile::at: Cannot set file position 2018
> Yes, that's what I was seeing too.
> 
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8">
<META NAME="Generator" CONTENT="MS Exchange Server version 5.5.2653.12">
<TITLE>RE: [Bug 54810] kword destroys data when space to write is empty </TITLE>
</HEAD>
<BODY>

<P><FONT SIZE=2>I'm sorry.</FONT>
</P>

<P><FONT SIZE=2>There was the old 3.2.1 libkio linked to libkio.so instead of the new one.</FONT>
</P>

<P><FONT SIZE=2>It works as expected now.</FONT>
</P>

<P><FONT SIZE=2>Regards.</FONT>
</P>

<P><FONT SIZE=2>&gt; -----Mensaje original-----</FONT>
<BR><FONT SIZE=2>&gt; De: David Faure [<A HREF="mailto:faure@kde.org">mailto:faure@kde.org</A>]</FONT>
<BR><FONT SIZE=2>&gt; Enviado el: lunes, 22 de marzo de 2004 17:18</FONT>
<BR><FONT SIZE=2>&gt; Para: jtorres@sia.es</FONT>
<BR><FONT SIZE=2>&gt; Asunto: [Bug 54810] kword destroys data when space to write is empty </FONT>
<BR><FONT SIZE=2>&gt; </FONT>
<BR><FONT SIZE=2>&gt; </FONT>
<BR><FONT SIZE=2>&gt; ------- You are receiving this mail because: -------</FONT>
<BR><FONT SIZE=2>&gt; You reported the bug, or are watching the reporter.</FONT>
<BR><FONT SIZE=2>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </FONT>
<BR><FONT SIZE=2>&gt; <A HREF="http://bugs.kde.org/show_bug.cgi?id=54810" TARGET="_blank">http://bugs.kde.org/show_bug.cgi?id=54810</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </FONT>
<BR><FONT SIZE=2>&gt; </FONT>
<BR><FONT SIZE=2>&gt; </FONT>
<BR><FONT SIZE=2>&gt; </FONT>
<BR><FONT SIZE=2>&gt; </FONT>
<BR><FONT SIZE=2>&gt; ------- Additional Comments From faure kde org&nbsp; 2004-03-22 </FONT>
<BR><FONT SIZE=2>&gt; 17:17 -------</FONT>
<BR><FONT SIZE=2>&gt; On Monday 22 March 2004 15:16, Jaime Torres wrote:</FONT>
<BR><FONT SIZE=2>&gt; &gt; I've tested again with the same kdelibs and koffice-040322.tar.bz2</FONT>
<BR><FONT SIZE=2>&gt; Which kdelibs is that?</FONT>
<BR><FONT SIZE=2>&gt; Do you have kdelibs/kio/kio/kzip.cpp version 1.47 (or 1.44.2.3) ?</FONT>
<BR><FONT SIZE=2>&gt; </FONT>
<BR><FONT SIZE=2>&gt; &gt; QFile::at: Cannot set file position 2018</FONT>
<BR><FONT SIZE=2>&gt; Yes, that's what I was seeing too.</FONT>
<BR><FONT SIZE=2>&gt; </FONT>
</P>

</BODY>
</HTML>
Comment 18 Nicolas Goutte 2004-05-19 16:37:09 UTC
I suppose that "It works as expected now" means that this bug can be considered as RESOLVED/FIXED.

Have a nice day!