diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2016-03-07 14:36:40 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2016-03-07 14:36:40 +0000 |
commit | a4b5a6fb054a30b840aadc8ecbba1cb3afedb8db (patch) | |
tree | bfe5bbe01d1f2f22156259d92ff1b6b69c646de6 /plugins/Dropbox/src/dropbox_commands.cpp | |
parent | f5dfa8c3e7400594e220889899b453dbbda5a0c2 (diff) |
Dropbox: some fixes (thx to wishmaster)
git-svn-id: http://svn.miranda-ng.org/main/trunk@16440 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Dropbox/src/dropbox_commands.cpp')
-rw-r--r-- | plugins/Dropbox/src/dropbox_commands.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/Dropbox/src/dropbox_commands.cpp b/plugins/Dropbox/src/dropbox_commands.cpp index 7fef60be45..c4c1062573 100644 --- a/plugins/Dropbox/src/dropbox_commands.cpp +++ b/plugins/Dropbox/src/dropbox_commands.cpp @@ -24,7 +24,7 @@ void CDropbox::CommandList(void *arg) char path[MAX_PATH];
PreparePath((char*)param->data, path);
- if (path == NULL) {
+ if (path[0] == NULL) {
CMStringA error(FORMAT, T2Utf(TranslateT("\"%s\" command has invalid parameter.\nUse \"/help\" for more info.")), "/share");
ProtoBroadcastAck(MODULE, param->hContact, ACKTYPE_MESSAGE, ACKRESULT_SUCCESS, param->hProcess, 0);
CallContactService(param->instance->GetDefaultContact(), PSR_MESSAGE, 0, (LPARAM)error.GetBuffer());
@@ -70,7 +70,7 @@ void CDropbox::CommandShare(void *arg) char path[MAX_PATH];
PreparePath((char*)param->data, path);
- if (path == NULL) {
+ if (path[0] == NULL) {
CMStringA error(FORMAT, T2Utf(TranslateT("\"%s\" command has invalid parameter.\nUse \"/help\" for more info.")), "/share");
ProtoBroadcastAck(MODULE, param->hContact, ACKTYPE_MESSAGE, ACKRESULT_SUCCESS, param->hProcess, 0);
CallContactService(param->instance->GetDefaultContact(), PSR_MESSAGE, 0, (LPARAM)error.GetBuffer());
@@ -155,7 +155,7 @@ void CDropbox::CommandDelete(void *arg) char path[MAX_PATH];
PreparePath((char*)param->data, path);
- if (path == NULL) {
+ if (path[0] == NULL) {
CMStringA error(FORMAT, T2Utf(TranslateT("\"%s\" command has invalid parameter.\nUse \"/help\" for more info.")), "/delete");
ProtoBroadcastAck(MODULE, param->hContact, ACKTYPE_MESSAGE, ACKRESULT_SUCCESS, param->hProcess, 0);
CallContactService(param->instance->GetDefaultContact(), PSR_MESSAGE, 0, (LPARAM)error.GetBuffer());
|