summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--dive.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/dive.c b/dive.c
index c958478bb..9972212aa 100644
--- a/dive.c
+++ b/dive.c
@@ -2505,7 +2505,6 @@ timestamp_t get_times()
return dive->when;
}
-#define MAX_USERID_SIZE 32
void set_save_userid_local(short value)
{
prefs.save_userid_local = value;
@@ -2513,13 +2512,8 @@ void set_save_userid_local(short value)
void set_userid(char *rUserId)
{
- prefs.userid = (char *)malloc(MAX_USERID_SIZE + 1);
- if (prefs.userid && rUserId) {
- strncpy(prefs.userid, rUserId, MAX_USERID_SIZE);
- prefs.userid[MAX_USERID_SIZE] = 0;
- }
+ prefs.userid = strdup(rUserId);
}
-#undef MAX_USERID_SIZE
int average_depth(struct diveplan *dive)
{