diff options
author | John Christopher Anderson <jchris@apache.org> | 2010-07-19 22:46:14 +0000 |
---|---|---|
committer | John Christopher Anderson <jchris@apache.org> | 2010-07-19 22:46:14 +0000 |
commit | 662bf6812ef0a4fa80cf137761f9b1b5a93821c0 (patch) | |
tree | 8ac4c4e78f1f0f38e867c019df64af3a9d25a00f /src/couchdb/couch_db.hrl | |
parent | 11aa4f9db32ef33ef8b9e17ee2a685c95bc553b2 (diff) |
remove unguarded atom creation to prevent DOS attacks. closes COUCHDB-829
git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@965667 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/couchdb/couch_db.hrl')
-rw-r--r-- | src/couchdb/couch_db.hrl | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/couchdb/couch_db.hrl b/src/couchdb/couch_db.hrl index 4497dc8f..a35745ef 100644 --- a/src/couchdb/couch_db.hrl +++ b/src/couchdb/couch_db.hrl @@ -20,7 +20,6 @@ -define(JSON_ENCODE(V), couch_util:json_encode(V)). -define(JSON_DECODE(V), couch_util:json_decode(V)). --define(b2a(V), list_to_atom(binary_to_list(V))). -define(b2l(V), binary_to_list(V)). -define(l2b(V), list_to_binary(V)). |