aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/ephy-nss-glue.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/ephy-nss-glue.c b/src/ephy-nss-glue.c
index a5f58cc06..84992e782 100644
--- a/src/ephy-nss-glue.c
+++ b/src/ephy-nss-glue.c
@@ -129,7 +129,10 @@ unpadBlock(SECItem *data, int blockSize, SECItem *result)
PORT_Memcpy(result->data, data->data, result->len);
if (padLength < 2) {
- return SECWouldBlock;
+ /* Chromium returns an error here, but it seems to be harmless and
+ if we continue we'll be able to import the password
+ correctly */
+ /* return SECWouldBlock; */
}
loser: