summaryrefslogtreecommitdiffstats
path: root/extensions
diff options
context:
space:
mode:
authorDavid Tardon <dtardon@redhat.com>2012-05-06 13:52:07 +0200
committerDavid Tardon <dtardon@redhat.com>2012-05-06 19:51:38 +0200
commit30115a0e78cba478562f183fe06da025b3f44936 (patch)
tree4f0a47223815f12da40fa90d07e02c95d132a083 /extensions
parentWaE: ordered comparison of pointer with integer zero (diff)
downloadcore-30115a0e78cba478562f183fe06da025b3f44936.tar.gz
core-30115a0e78cba478562f183fe06da025b3f44936.zip
WaE: NULL used in arithmetic
Change-Id: I89352cd2ae1d5517dff38294ff2bb53d39aadb8d
Diffstat (limited to 'extensions')
-rw-r--r--extensions/source/nsplugin/source/npshell.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/source/nsplugin/source/npshell.cxx b/extensions/source/nsplugin/source/npshell.cxx
index c4065b6b6e95..e9aae6561a84 100644
--- a/extensions/source/nsplugin/source/npshell.cxx
+++ b/extensions/source/nsplugin/source/npshell.cxx
@@ -746,7 +746,7 @@ NPP_StreamAsFile(NPP instance, NPStream *stream, const char* fname)
if(0 != strcmp(fname, localPathNew)) {
#ifdef WNT
- if(NULL == CopyFile(fname, localPathNew, FALSE))
+ if(FALSE == CopyFile(fname, localPathNew, FALSE))
return;
#endif //end of WNT