Robert Shearman : oleaut: Reduce an ERR down to a WARN since a NULL interface pointer

Alexandre Julliard julliard at wine.codeweavers.com
Wed Jan 18 05:28:34 CST 2006


Module: wine
Branch: refs/heads/master
Commit: 89846948e301fdf1dcf5f29ae9b7fc9ee5de5fed
URL:    http://source.winehq.org/git/?p=wine.git;a=commit;h=89846948e301fdf1dcf5f29ae9b7fc9ee5de5fed

Author: Robert Shearman <rob at codeweavers.com>
Date:   Wed Jan 18 11:29:01 2006 +0100

oleaut: Reduce an ERR down to a WARN since a NULL interface pointer
doesn't signify an error; it is just unusual.

---

 dlls/oleaut32/tmarshal.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/oleaut32/tmarshal.c b/dlls/oleaut32/tmarshal.c
index 273a598..e4fafa2 100644
--- a/dlls/oleaut32/tmarshal.c
+++ b/dlls/oleaut32/tmarshal.c
@@ -167,7 +167,7 @@ _marshal_interface(marshal_state *buf, R
 	 * can happen. S_OK to make sure we continue
 	 * serializing.
 	 */
-        ERR("pUnk is NULL?\n");
+        WARN("pUnk is NULL\n");
         xsize = 0;
         return xbuf_add(buf,(LPBYTE)&xsize,sizeof(xsize));
     }




More information about the wine-cvs mailing list