1
0
mirror of https://github.com/libssh2/libssh2.git synced 2025-11-02 10:53:16 +03:00

pem.c: fixed warning C6269: possible incorrect order of operations

This commit is contained in:
Marc Hoersken
2015-03-22 15:54:14 +01:00
parent 71d45d3df1
commit 247dfce5fb

View File

@@ -89,7 +89,7 @@ readline_memory(char *line, size_t line_size,
} }
line[len] = '\0'; line[len] = '\0';
*filedata_offset++; *filedata_offset += 1;
return 0; return 0;
} }