summaryrefslogtreecommitdiff
path: root/plugins/Watrack_MPD
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/Watrack_MPD')
-rwxr-xr-xplugins/Watrack_MPD/src/options.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/Watrack_MPD/src/options.cpp b/plugins/Watrack_MPD/src/options.cpp
index f79a68ec4f..03471e3c83 100755
--- a/plugins/Watrack_MPD/src/options.cpp
+++ b/plugins/Watrack_MPD/src/options.cpp
@@ -47,13 +47,13 @@ static INT_PTR CALLBACK DlgProcWaMpdOpts(HWND hwndDlg, UINT msg, WPARAM wParam,
case PSN_APPLY:
{
- TCHAR szText[128];
+ TCHAR szText[256];
db_set_w(NULL, szModuleName, "Port", (WORD)GetDlgItemInt(hwndDlg, IDC_PORT, NULL, FALSE));
gbPort = (WORD)GetDlgItemInt(hwndDlg, IDC_PORT, NULL, FALSE);
- GetDlgItemText(hwndDlg, IDC_SERVER, szText, sizeof(szText));
+ GetDlgItemText(hwndDlg, IDC_SERVER, szText, SIZEOF(szText));
db_set_ts(NULL, szModuleName, "Server", szText);
_tcscpy(gbHost, szText);
- GetDlgItemText(hwndDlg, IDC_PASSWORD, szText, sizeof(szText));
+ GetDlgItemText(hwndDlg, IDC_PASSWORD, szText, SIZEOF(szText));
db_set_ts(NULL, szModuleName, "Password", szText);
_tcscpy(gbPassword, szText);
return TRUE;