summaryrefslogtreecommitdiffstats
path: root/src/storage/ngram.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/storage/ngram.cpp')
-rw-r--r--src/storage/ngram.cpp18
1 files changed, 17 insertions, 1 deletions
diff --git a/src/storage/ngram.cpp b/src/storage/ngram.cpp
index 7509b17..3964388 100644
--- a/src/storage/ngram.cpp
+++ b/src/storage/ngram.cpp
@@ -287,6 +287,9 @@ bool Bigram::load_db(const char * dbfile){
ret = db_create(&tmp_db, NULL, 0);
assert(ret == 0);
+ if (NULL == tmp_db)
+ return false;
+
ret = tmp_db->open(tmp_db, NULL, dbfile, NULL,
DB_HASH, DB_RDONLY, 0600);
if ( ret != 0 )
@@ -294,9 +297,13 @@ bool Bigram::load_db(const char * dbfile){
DBC * cursorp = NULL;
DBT key, data;
+
/* Get a cursor */
tmp_db->cursor(tmp_db, NULL, &cursorp, 0);
+ if (NULL == cursorp)
+ return false;
+
/* Initialize our DBTs. */
memset(&key, 0, sizeof(DBT));
memset(&data, 0, sizeof(DBT));
@@ -328,6 +335,9 @@ bool Bigram::save_db(const char * dbfile){
ret = db_create(&tmp_db, NULL, 0);
assert(ret == 0);
+ if (NULL == tmp_db)
+ return false;
+
ret = tmp_db->open(tmp_db, NULL, dbfile, NULL,
DB_HASH, DB_CREATE, 0600);
if ( ret != 0 )
@@ -338,6 +348,9 @@ bool Bigram::save_db(const char * dbfile){
/* Get a cursor */
m_db->cursor(m_db, NULL, &cursorp, 0);
+ if (NULL == cursorp)
+ return false;
+
/* Initialize our DBTs. */
memset(&key, 0, sizeof(DBT));
memset(&data, 0, sizeof(DBT));
@@ -444,7 +457,10 @@ bool Bigram::get_all_items(GArray * items){
DBT key, data;
int ret;
/* Get a cursor */
- m_db->cursor(m_db, NULL, &cursorp, 0);
+ m_db->cursor(m_db, NULL, &cursorp, 0);
+
+ if (NULL == cursorp)
+ return false;
/* Initialize our DBTs. */
memset(&key, 0, sizeof(DBT));