Notes/Domino Fix List
| |
SPR # TTRT6KJTA4 | Fixed in 6.5.6; 7.0.2; 6.5.5 FP1; 7.0.1 FP1 release | Security fix |
Product Area: Server Technical Area: LotusScript Platform: Cross Platform
Lotus Customer Support APAR: LO11892
SPR# TTRT6KJTA4 - This fix prevents a server crash when using ViewNavigator.GetEntry() under certain circumstances.
Technote Number: 1236569
Problem:
This issue has been reported to Quality Engineering as SPR# TTRT6KJTA4, and is
fixed in Domino 6.5.5 Fix Pack 1 (FP1) and 7.0.1 Fix Pack 1 (FP1).
Excerpt from the Lotus Domino Release 6.5.5 Fix Pack 1 and 7.0.1 Fix Pack 1 fix
lists (available at http://www.ibm.com/developerworks/lotus):
LotusScript
SPR# TTRT6KJTA4 - This fix prevents a server crash when using
ViewNavigator.GetEntry() under certain circumstances.
Refer to the Upgrade Central site for details on upgrading Notes/Domino.
Workaround:
Perform a check to make sure that the initial NotesViewEntry object returned by
the GetFirstDocument method (of the NotesViewNavigator class) is valid.
For example:
Set ventry=vnav.GetFirstDocument
If Not ventry Is Nothing Then
Set ventry2=vnav.GetEntry(ventry)
pos$=ventry2.getposition(".")
End If
Note: While the above code may seem redundant it is provided to demonstrate a
variant which may be similar to other variants in use.
or:
Set ventry=vnav.GetFirstDocument
If Not ventry Is Nothing Then
pos$=ventry.getposition(".")
End If
More >
Last Modified on 12/11/2013
Go back
|