We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6164449 commit 0ed9f09Copy full SHA for 0ed9f09
SRC/dictionarySystem.cpp
@@ -111,7 +111,8 @@ bool TraceHierarchyTest(int x)
111
MEANING GetMeaning(WORDP D, int index)
112
{
113
MEANING* meanings = GetMeanings(D);
114
- return (meanings) ? meanings[index] : NULL;
+ if (meanings) return meanings[index];
115
+ else return MakeMeaning(D); // switch to generic non null meaning
116
}
117
118
void RemoveConceptTopic(int list[256], WORDP D,int index)
0 commit comments