aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/string.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/string.c b/src/string.c
index 37fe42e6..c2ee2978 100644
--- a/src/string.c
+++ b/src/string.c
@@ -75,7 +75,7 @@ struct ssh_string_struct *ssh_string_new(size_t size) {
*/
int ssh_string_fill(struct ssh_string_struct *s, const void *data, size_t len) {
if ((s == NULL) || (data == NULL) ||
- (len == 0) || (len > s->size)) {
+ (len == 0) || (len > ssh_string_len(s))) {
return -1;
}
@@ -165,7 +165,7 @@ char *ssh_string_to_char(struct ssh_string_struct *s) {
char *new;
if (s == NULL || s->data == NULL)
return NULL;
- len = ntohl(s->size) + 1;
+ len = ssh_string_len(s) + 1;
new = malloc(len);
if (new == NULL) {
@@ -200,12 +200,12 @@ struct ssh_string_struct *ssh_string_copy(struct ssh_string_struct *s) {
return NULL;
}
- new = ssh_string_new(s->size);
+ new = ssh_string_new(ssh_string_len(s));
if (new == NULL) {
return NULL;
}
- new->size = s->size;
- memcpy(new->data, s->data, ntohl(s->size));
+
+ memcpy(new->data, s->data, ssh_string_len(s));
return new;
}