mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-09-03 07:33:04 +00:00
Fix uninitialized pointer in CNxTKWindow
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4706 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
parent
c27e15cfc6
commit
9eaedaec1e
2 changed files with 14 additions and 3 deletions
|
|
@ -66,9 +66,18 @@ using namespace NXWidgets;
|
|||
*/
|
||||
|
||||
CNxTkWindow::CNxTkWindow(NXHANDLE hNxServer, CWidgetControl *pWidgetControl)
|
||||
: CCallback(pWidgetControl), m_hNxServer(hNxServer), m_hNxTkWindow(0),
|
||||
m_widgetControl(pWidgetControl)
|
||||
: CCallback(pWidgetControl)
|
||||
{
|
||||
// Save construction values
|
||||
|
||||
m_hNxServer = hNxServer;
|
||||
m_widgetControl = pWidgetControl;
|
||||
|
||||
// Nullify uninitilized pointers
|
||||
|
||||
m_hNxTkWindow = (NXTKWINDOW )0;
|
||||
m_toolbar = (CNxToolbar *)0;
|
||||
|
||||
// Create the CGraphicsPort instance for this window
|
||||
|
||||
m_widgetControl->createGraphicsPort(static_cast<INxWindow*>(this));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue