aboutsummaryrefslogtreecommitdiffstats
path: root/smime
diff options
context:
space:
mode:
authorKjartan Maraas <kmaraas@gnome.org>2006-10-01 19:49:27 +0800
committerKjartan Maraas <kmaraas@src.gnome.org>2006-10-01 19:49:27 +0800
commit8f0374166d477e9ee2d64ee7bfe75b537fb5382a (patch)
tree157ef18da7f47ffd5ebd67f1cbe3d712495eb4ee /smime
parent90dfa49bf6a4c4a5f27de7bd53bcbe4d9bf21eaa (diff)
downloadgsoc2013-evolution-8f0374166d477e9ee2d64ee7bfe75b537fb5382a.tar
gsoc2013-evolution-8f0374166d477e9ee2d64ee7bfe75b537fb5382a.tar.gz
gsoc2013-evolution-8f0374166d477e9ee2d64ee7bfe75b537fb5382a.tar.bz2
gsoc2013-evolution-8f0374166d477e9ee2d64ee7bfe75b537fb5382a.tar.lz
gsoc2013-evolution-8f0374166d477e9ee2d64ee7bfe75b537fb5382a.tar.xz
gsoc2013-evolution-8f0374166d477e9ee2d64ee7bfe75b537fb5382a.tar.zst
gsoc2013-evolution-8f0374166d477e9ee2d64ee7bfe75b537fb5382a.zip
Initialize a pointer to NULL and cast away a warning. bug #332101. Fix
2006-10-01 Kjartan Maraas <kmaraas@gnome.org> * lib/e-asn1-object.c: (build_from_der): Initialize a pointer to NULL and cast away a warning. bug #332101. * lib/e-pkcs12.c: (prompt_for_password), (nickname_collision): Fix some signed/unsigned warnings. bug #332101. svn path=/trunk/; revision=32840
Diffstat (limited to 'smime')
-rw-r--r--smime/ChangeLog7
-rw-r--r--smime/lib/e-asn1-object.c4
-rw-r--r--smime/lib/e-pkcs12.c4
3 files changed, 11 insertions, 4 deletions
diff --git a/smime/ChangeLog b/smime/ChangeLog
index 3ebf0d040b..918785077e 100644
--- a/smime/ChangeLog
+++ b/smime/ChangeLog
@@ -1,3 +1,10 @@
+2006-10-01 Kjartan Maraas <kmaraas@gnome.org>
+
+ * lib/e-asn1-object.c: (build_from_der): Initialize a pointer
+ to NULL and cast away a warning. bug #332101.
+ * lib/e-pkcs12.c: (prompt_for_password), (nickname_collision):
+ Fix some signed/unsigned warnings. bug #332101.
+
2006-08-21 Andre Klapper <a9016009@gmx.de>
* smime-ui.glade:
diff --git a/smime/lib/e-asn1-object.c b/smime/lib/e-asn1-object.c
index 3fe957f3ba..49002d1cfc 100644
--- a/smime/lib/e-asn1-object.c
+++ b/smime/lib/e-asn1-object.c
@@ -229,7 +229,7 @@ build_from_der (EASN1Object *parent, char *data, char *end)
PRInt32 len;
PRUint32 type;
unsigned char code, tagnum;
- EASN1Object *asn1object;
+ EASN1Object *asn1object = NULL;
if (data >= end)
return TRUE;
@@ -254,7 +254,7 @@ build_from_der (EASN1Object *parent, char *data, char *end)
return FALSE;
}
data++;
- len = get_der_item_length (data, end, &bytesUsed, &indefinite);
+ len = get_der_item_length ((unsigned char *)data, (unsigned char *)end, &bytesUsed, &indefinite);
data += bytesUsed;
if ((len < 0) || ((data+len) > end))
return FALSE;
diff --git a/smime/lib/e-pkcs12.c b/smime/lib/e-pkcs12.c
index 6830b69df3..be5d16138a 100644
--- a/smime/lib/e-pkcs12.c
+++ b/smime/lib/e-pkcs12.c
@@ -226,7 +226,7 @@ prompt_for_password (char *title, char *prompt, SECItem *pwd)
if (passwd) {
size_t len = strlen (passwd);
const char *inptr = passwd;
- char *outptr;
+ unsigned char *outptr;
gunichar2 c;
SECITEM_AllocItem(NULL, pwd, sizeof (gunichar2) * (len + 1));
@@ -414,7 +414,7 @@ nickname_collision(SECItem *oldNick, PRBool *cancel, void *wincx)
new_nick = PR_Malloc (sizeof (SECItem));
new_nick->type = siAsciiString;
- new_nick->data = nickname;
+ new_nick->data = (unsigned char *)nickname;
new_nick->len = strlen((char*)new_nick->data);
return new_nick;
}