small memory leak
This commit is contained in:
parent
bbb2593461
commit
ca73d627fa
@ -106,10 +106,11 @@ void IdxThread::run()
|
|||||||
indexingstatus = IDXTS_ERROR;
|
indexingstatus = IDXTS_ERROR;
|
||||||
indexingReason = "Indexing failed: " + indexer->getReason();
|
indexingReason = "Indexing failed: " + indexer->getReason();
|
||||||
}
|
}
|
||||||
delete myconf;
|
|
||||||
pidfile.close();
|
pidfile.close();
|
||||||
delete indexer;
|
delete indexer;
|
||||||
}
|
}
|
||||||
|
delete myconf;
|
||||||
|
myconf = 0;
|
||||||
rezero = false;
|
rezero = false;
|
||||||
action_mutex.lock();
|
action_mutex.lock();
|
||||||
}
|
}
|
||||||
|
|||||||
@ -37,33 +37,39 @@
|
|||||||
|
|
||||||
<h2><a name="b_latest">recoll 1.15</a></h2>
|
<h2><a name="b_latest">recoll 1.15</a></h2>
|
||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
|
<li>Cancelling a preview in the GUI will also cancel the indexing
|
||||||
|
thread if it is running.</li>
|
||||||
|
|
||||||
<li>Using search preview while the indexing thread is running will
|
<li>Using search preview while the indexing thread is running will
|
||||||
sometimes crash the GUI or provoke other strangeness. This
|
sometimes crash the GUI or provoke other strangeness. This is
|
||||||
is due to insufficient protection of resources shared by
|
apparently due to insufficient protection of resources shared by
|
||||||
several threads. The current and unsatisfying workaround, is
|
several threads. After recent cleanup, the problem occurs quite
|
||||||
to avoid the situation, for example by using the standalone
|
seldom but it is not completely gone. The current and
|
||||||
recollindex program instead of the GUI indexing thread. I
|
unsatisfying workaround, is to avoid the situation, for example
|
||||||
will be working on a program-wide cleanup of multithreaded
|
by using the standalone recollindex program instead of the GUI
|
||||||
operation for the next version.</li>
|
indexing thread.</li>
|
||||||
|
|
||||||
|
<li>When an open error occurs on an external index while
|
||||||
|
starting the GUI, the initial indexing dialog is started,
|
||||||
|
which is incorrect because it cannot fix the problem.</li>
|
||||||
|
|
||||||
<li>The operations on the parent document in the result list
|
<li>The operations on the parent document in the result list
|
||||||
right click menu (Preview and Open), do not work, they
|
right click menu (Preview and Open), do not work, they
|
||||||
access the file's parent directory instead.</li>
|
access the file's parent directory instead.</li>
|
||||||
|
|
||||||
<li>The rclzip filter can't handle utf-8 in path names for archive
|
<li>The rclzip filter can't handle utf-8 in path names for archive
|
||||||
members. An <a
|
members. An <a href="http://www.recoll.org/filters/rclzip">
|
||||||
href="http://www.recoll.org/filters/rclzip">updated filter</a> is
|
updated filter</a> is available. </li>
|
||||||
available. </li>
|
|
||||||
|
|
||||||
<li>The rclzip and rclchm filters can't handle archive members
|
<li>The rclzip and rclchm filters can't handle archive members
|
||||||
with a colon (':') in the file name or path. The files are normally
|
with a colon (':') in the file name or path. The files are normally
|
||||||
indexed and can be searched for, but they can't be displayed
|
indexed and can be searched for, but they can't be displayed
|
||||||
(neither opened nor previewed). There is a <a
|
(neither opened nor previewed). There is a
|
||||||
href="https://bitbucket.org/medoc/recoll/changeset/3751ea8ea179">
|
<a href="https://bitbucket.org/medoc/recoll/changeset/3751ea8ea179">
|
||||||
patch</a> which fixes the issue (then needs full reindex for these
|
patch</a> which fixes the issue (then needs full reindex for these
|
||||||
files).</li>
|
files).</li>
|
||||||
|
|
||||||
<li>After an upgrade, the recoll GUI sometimes crashes on
|
<li>After an upgrade, the recoll GUI sometimes crashes on
|
||||||
startup. This is fixed by removing (back it up just in case)
|
startup. This is fixed by removing (back it up just in case)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user