summaryrefslogtreecommitdiffhomepage
path: root/nGenEx/ComboBox.cpp
diff options
context:
space:
mode:
authorFWoltermann@gmail.com <FWoltermann@gmail.com@076cb2c4-205e-83fd-5cf3-1be9aa105544>2011-12-09 15:37:22 +0000
committerFWoltermann@gmail.com <FWoltermann@gmail.com@076cb2c4-205e-83fd-5cf3-1be9aa105544>2011-12-09 15:37:22 +0000
commitd489095bcdf9603053ebd514588093a991605ffb (patch)
treedb03ad0a00e1466fef64290adfecd67bc9373d1c /nGenEx/ComboBox.cpp
parent4f272a3e310be77b4ba16fdfd2c9b6735f411037 (diff)
downloadstarshatter-d489095bcdf9603053ebd514588093a991605ffb.zip
starshatter-d489095bcdf9603053ebd514588093a991605ffb.tar.gz
starshatter-d489095bcdf9603053ebd514588093a991605ffb.tar.bz2
More string and fopen safety measures
Diffstat (limited to 'nGenEx/ComboBox.cpp')
-rw-r--r--nGenEx/ComboBox.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/nGenEx/ComboBox.cpp b/nGenEx/ComboBox.cpp
index 82880de..29cc87f 100644
--- a/nGenEx/ComboBox.cpp
+++ b/nGenEx/ComboBox.cpp
@@ -43,7 +43,7 @@ ComboBox::ComboBox(ActiveWindow* p, int ax, int ay, int aw, int ah, DWORD aid)
bevel_width = 5;
char buf[32];
- sprintf(buf, "ComboBox %d", id);
+ sprintf_s(buf, "ComboBox %d", id);
desc = buf;
}
@@ -61,7 +61,7 @@ ComboBox::ComboBox(Screen* s, int ax, int ay, int aw, int ah, DWORD aid)
bevel_width = 5;
char buf[32];
- sprintf(buf, "ComboBox %d", id);
+ sprintf_s(buf, "ComboBox %d", id);
desc = buf;
}