added checking for memory allocation failure in MakeConfigurationView

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@3344 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Matthew Wilber 2003-05-26 18:07:29 +00:00
parent d7be1587b7
commit 96a13ed121

View File

@ -947,7 +947,9 @@ STXTTranslator::Translate(BPositionIO *inSource,
//
// Postconditions:
//
// Returns:
// Returns: B_BAD_VALUE if ioExtension or outView are NULL,
// B_NO_MEMORY if a view can't be allocated,
// B_OK if all goes well
// ---------------------------------------------------------------
status_t
STXTTranslator::MakeConfigurationView(BMessage *ioExtension, BView **outView,
@ -958,6 +960,9 @@ STXTTranslator::MakeConfigurationView(BMessage *ioExtension, BView **outView,
STXTView *view = new STXTView(BRect(0, 0, 225, 175),
"STXTTranslator Settings", B_FOLLOW_ALL, B_WILL_DRAW);
if (!view)
return B_NO_MEMORY;
*outView = view;
*outExtent = view->Bounds();