Преглед изворни кода

Fix Buffer<> version of Dictionary.get().

Adam Ierymenko пре 9 година
родитељ
комит
eee59ec9ce
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      node/Dictionary.hpp

+ 1 - 1
node/Dictionary.hpp

@@ -223,7 +223,7 @@ public:
 	template<unsigned int BC>
 	inline bool get(const char *key,Buffer<BC> &dest) const
 	{
-		const int r = this->get(key,const_cast<char *>(reinterpret_cast<const char *>(dest.data())),C);
+		const int r = this->get(key,const_cast<char *>(reinterpret_cast<const char *>(dest.data())),BC);
 		if (r >= 0) {
 			dest.setSize((unsigned int)r);
 			return true;