diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/ephy-nss-glue.c | 5 |
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: |