diff options
| author | Benjamin Dauvergne <bdauvergne@entrouvert.com> | 2008-08-01 14:06:37 +0000 |
|---|---|---|
| committer | Benjamin Dauvergne <bdauvergne@entrouvert.com> | 2008-08-01 14:06:37 +0000 |
| commit | 63b21e4cb6790a0d2e23f2843632915cacd290fb (patch) | |
| tree | b7f984f1adbaf203f78233bb04b2aca060ec0f69 | |
| parent | 9ad0effabb92339e4cd9106cb9d2dc1b4a928be6 (diff) | |
remove useless reset of structure after allocation with g_new0
| -rw-r--r-- | lasso/id-wsf/wsf_profile.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lasso/id-wsf/wsf_profile.c b/lasso/id-wsf/wsf_profile.c index eb9ab2ce..85b063dc 100644 --- a/lasso/id-wsf/wsf_profile.c +++ b/lasso/id-wsf/wsf_profile.c @@ -1548,10 +1548,6 @@ instance_init(LassoWsfProfile *profile) profile->msg_body = NULL; profile->private_data = g_new0(LassoWsfProfilePrivate, 1); - profile->private_data->dispose_has_run = FALSE; - profile->private_data->description = NULL; - profile->private_data->fault = NULL; - profile->private_data->credentials = NULL; } static void |
