To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84379
Issue #|84379
Summary|to-be-SRC680_m239: WaE: avmedia/source/quicktime/playe
|r.cxx
Component|porting
Version|680m238
Platform|Macintosh
URL|
OS/Version|Mac OS X
Status|NEW
Status whiteboard|
Keywords|
Resolution|
Issue type|PATCH
Priority|P1
Subcomponent|MacOSX
Assigned to|vg
Reported by|pjanik
------- Additional comments from [EMAIL PROTECTED] Sat Dec 8 19:04:42 +0000
2007 -------
nPtr might be used uninitialized. Please apply the following change:
diff -urN ooo_SRC680_m239_src.orig/avmedia/source/quicktime/player.cxx
ooo_SRC680_m239_src/avmedia/source/quicktime/player.cxx
--- ooo_SRC680_m239_src.orig/avmedia/source/quicktime/player.cxx
2007-12-08
20:02:09.000000000 +0100
+++ ooo_SRC680_m239_src/avmedia/source/quicktime/player.cxx 2007-12-08
20:02:48.000000000 +0100
@@ -420,7 +420,8 @@
::avmedia::quicktime::Window* pWindow = new
::avmedia::quicktime::Window( mxMgr, *this );
xRet = pWindow;
- sal_IntPtr nPtr; aArguments[0] >>= nPtr;
+ sal_IntPtr nPtr = NULL;
+ aArguments[0] >>= nPtr;
mpMovieView = reinterpret_cast< QTMovieView * >(nPtr);
[mpMovieView setMovie: mpMovie];
[mpMovieView setControllerVisible: NO];
---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]