Attention is currently required from: plaisthos.
Hello plaisthos,
I'd like you to do a code review.
Please visit
http://gerrit.openvpn.net/c/openvpn/+/1438?usp=email
to review the following change.
Change subject: manage: Avoid several conversion warnings by using the correct
types
......................................................................
manage: Avoid several conversion warnings by using the correct types
Change-Id: I0c5ef13d6fa6c1dd15da934a33e904c2fdacb731
Signed-off-by: Frank Lichtenheld <[email protected]>
---
M src/openvpn/manage.c
1 file changed, 10 insertions(+), 26 deletions(-)
git pull ssh://gerrit.openvpn.net:29418/openvpn refs/changes/38/1438/1
diff --git a/src/openvpn/manage.c b/src/openvpn/manage.c
index 6efa100..2191e55 100644
--- a/src/openvpn/manage.c
+++ b/src/openvpn/manage.c
@@ -206,11 +206,6 @@
return man->settings.up.defined && !man->connection.password_verified;
}
-#if defined(__GNUC__) || defined(__clang__)
-#pragma GCC diagnostic push
-#pragma GCC diagnostic ignored "-Wconversion"
-#endif
-
static void
man_check_password(struct management *man, const char *line)
{
@@ -220,7 +215,8 @@
* the attacker choice, it should not give any indication of the real
* password length, use + 1 to include the NUL byte that terminates the
* string*/
- size_t compare_len = min_uint(strlen(line) + 1,
sizeof(man->settings.up.password));
+ size_t compare_len =
+ min_size(strlen(line) + 1, sizeof(man->settings.up.password));
if (memcmp_constant_time(line, man->settings.up.password, compare_len)
== 0)
{
man->connection.password_verified = true;
@@ -241,10 +237,6 @@
}
}
-#if defined(__GNUC__) || defined(__clang__)
-#pragma GCC diagnostic pop
-#endif
-
static void
man_update_io_state(struct management *man)
{
@@ -2315,19 +2307,14 @@
#endif /* ifdef TARGET_ANDROID */
-#if defined(__GNUC__) || defined(__clang__)
-#pragma GCC diagnostic push
-#pragma GCC diagnostic ignored "-Wconversion"
-#endif
-
-static int
+static ssize_t
man_read(struct management *man)
{
/*
* read command line from socket
*/
unsigned char buf[256];
- int len = 0;
+ ssize_t len = 0;
#ifdef TARGET_ANDROID
int fd;
@@ -2348,7 +2335,7 @@
{
bool processed_command = false;
- ASSERT(len <= (int)sizeof(buf));
+ ASSERT(len <= (ssize_t)sizeof(buf));
command_line_add(man->connection.in, buf, (size_t)len);
/*
@@ -2414,11 +2401,11 @@
return len;
}
-static int
+static ssize_t
man_write(struct management *man)
{
const int size_hint = 1024;
- int sent = 0;
+ ssize_t sent = 0;
const struct buffer *buf;
buffer_list_aggregate(man->connection.out, size_hint);
@@ -2435,7 +2422,9 @@
}
else
#endif
+ {
sent = send(man->connection.sd_cli, (const void *)BPTR(buf), len,
MSG_NOSIGNAL);
+ }
if (sent >= 0)
{
buffer_list_advance(man->connection.out, sent);
@@ -2457,10 +2446,6 @@
return sent;
}
-#if defined(__GNUC__) || defined(__clang__)
-#pragma GCC diagnostic pop
-#endif
-
static void
man_connection_clear(struct man_connection *mc)
{
@@ -3222,8 +3207,7 @@
if (net_events & FD_WRITE)
{
- int status;
- status = man_write(man);
+ ssize_t status = man_write(man);
if (status < 0 && WSAGetLastError() == WSAEWOULDBLOCK)
{
net_event_win32_clear_selected_events(&man->connection.ne32, FD_WRITE);
--
To view, visit http://gerrit.openvpn.net/c/openvpn/+/1438?usp=email
To unsubscribe, or for help writing mail filters, visit
http://gerrit.openvpn.net/settings?usp=email
Gerrit-MessageType: newchange
Gerrit-Project: openvpn
Gerrit-Branch: master
Gerrit-Change-Id: I0c5ef13d6fa6c1dd15da934a33e904c2fdacb731
Gerrit-Change-Number: 1438
Gerrit-PatchSet: 1
Gerrit-Owner: flichtenheld <[email protected]>
Gerrit-Reviewer: plaisthos <[email protected]>
Gerrit-CC: openvpn-devel <[email protected]>
Gerrit-Attention: plaisthos <[email protected]>
_______________________________________________
Openvpn-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/openvpn-devel