Bug Report T812550
Visible to All Users

An AV occurs if the spell checker whose UseThreadedLoad property is set to True reloads dictionaries in certain cases

created 6 years ago

Precondition:
TdxSpellChecker.UseThreadedLoad = True

Description:
If TdxSpellChecker.LoadDictionaries is called while the spell checker is still busy loading dictionaries from a previous call to LoadDictionaries then an Access Violation occurs.

Cause:
TdxCustomSpellChecker.LoadDictionaries calls
  TdxCustomSpellChecker.LoadDictionariesUsingThread calls
    TdxCustomSpellCheckerDictionary.LoadUsingThread.

TdxCustomSpellCheckerDictionary.LoadUsingThread:

Delphi
procedure TdxCustomSpellCheckerDictionary.LoadUsingThread; begin if not CanLoad then Exit; FreeAndNil(FLoadThread); FLoadThread := TdxDictionaryLoadThread.Create(Self); end;

Because FreeAndNil is used, the FLoadThread variable is nilled before the thread is destroyed.

This becomes a problem because the thread OnTerminate handler calls TdxCustomSpellCheckerDictionary.ThreadDone:

Delphi
procedure TdxCustomSpellCheckerDictionary.ThreadDone(Sender: TObject); begin if not LoadThread.IsLoadComplete then Cleanup else SpellChecker.CheckCallEnabledDictionariesLoaded; end;

which fails because LoadThread=nil.

Solution:
The solution is to replace the FreeAndNil with:

Delphi
FLoadThread.Free; FLoadThread := nil;
Show previous comments (3)
DevExpress Support Team 6 years ago

    As I see the subject of this thread, you mentioned that the Access Violation exception can be raised in our code in some situations.
    We tried to make a scenario by your description to replicate this issue, but failed. As we see, our code works correctly. That is why I'm asking you to provide us with a small test example that demonstrates the problem in our sources, i.e. causes the Access Violation exception.

    AM AM
    Anders Melander 3 years ago

      Can you please get someone who understands race conditions to take a look at this problem again. It's getting a little tiresome that we have to patch your source every time we update.

      You don't need to be able to reproduce the problem to understand that there is a problem. You just need to understand the analysis I provided.

      DevExpress Support Team 3 years ago

        Anders,

        We will try to find an appropriate solution for you. It may require us some time.
        Since we cannot reproduce the issue, assistance in testing our solution will be much appreciated.

        Answers approved by DevExpress Support

        created 3 years ago

        We have addressed the issue described in this ticket and will include a fix in our next maintenance update. Should you need to apply our fix prior to official release, you can request a hotfix here.

        Important Notes:

        • Hotfixes may be unavailable for Early Access/Beta builds or updates set for release within a week.
        • .NET only: in the NuGet Package Manager, use your personal NuGet feed and check the "Include prerelease" option to view the hotfix package in the "Updates" tab.
          Show previous comments (1)
          DevExpress Support Team 3 years ago

            Sure. I've extracted our code changed, so you can test them. Please let me know it they help.

            AM AM
            Anders Melander 3 years ago

              Looks good. I can no longer reproduce the problem.

              DevExpress Support Team 3 years ago

                Thanks. I am happy to hear that our solution helped.

                Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

                Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.